Skip to content

Commit

Permalink
fixed destructor of Corner operator
Browse files Browse the repository at this point in the history
  • Loading branch information
edinvay committed Jun 13, 2024
1 parent 4438abd commit dc894d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/trees/CornerOperatorTree.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ namespace mrcpp {
class CornerOperatorTree final : public OperatorTree {
public:
using OperatorTree::OperatorTree;
CornerOperatorTree() = default;
CornerOperatorTree(const CornerOperatorTree &tree) = delete;
CornerOperatorTree &operator=(const CornerOperatorTree &tree) = delete;
//~CornerOperatorTree() override; //causing memory problems ?!
~CornerOperatorTree() = default;

void calcBandWidth(double prec = -1.0) override;
bool isOutsideBand(int oTransl, int o_depth, int idx) override;
Expand Down

0 comments on commit dc894d1

Please sign in to comment.