Skip to content

Commit

Permalink
remove extra semi
Browse files Browse the repository at this point in the history
  • Loading branch information
nistick21 committed May 21, 2024
1 parent af6a1a4 commit 7fc58f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ql/option.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ namespace QuantLib {
: payoff_(std::move(payoff)), exercise_(std::move(exercise)) {}
void setupArguments(PricingEngine::arguments*) const override;
ext::shared_ptr<Payoff> payoff() const { return payoff_; }
ext::shared_ptr<Exercise> exercise() const { return exercise_; };
ext::shared_ptr<Exercise> exercise() const { return exercise_; }
protected:
// arguments
ext::shared_ptr<Payoff> payoff_;
Expand Down

0 comments on commit 7fc58f4

Please sign in to comment.