Skip to content

Commit

Permalink
Add destructor to Complex
Browse files Browse the repository at this point in the history
  • Loading branch information
fintarin committed Sep 22, 2023
1 parent 4aae672 commit 063c33c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/fintamath/numbers/Complex.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ class Complex : public INumberCRTP<Complex> {

Complex &operator=(Complex &&rhs) noexcept = default;

~Complex() override = default;

explicit Complex(const std::string &str);

explicit Complex(const INumber &inReal, const INumber &inImag);
Expand Down

0 comments on commit 063c33c

Please sign in to comment.