Skip to content

Commit

Permalink
Default destructors.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuscu committed Oct 1, 2024
1 parent 70e30db commit dea04fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nodegraph/include/nodegraph/core/NodeGraphBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ namespace l::nodegraph {
mInputManager(*this) {

}
~NodeGraphOp2() {
virtual ~NodeGraphOp2() {

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ namespace l::nodegraph {
AddOutput("Out " + std::to_string(i), 0.0f, 2);
}
}
virtual ~GraphDataBusDataIn() = default;

virtual void Process(int32_t numSamples, std::vector<NodeGraphInput>& inputs, std::vector<NodeGraphOutput>& outputs) override;
protected:
Expand All @@ -53,6 +54,7 @@ namespace l::nodegraph {
}
AddOutput("Bus Data", 0.0f, 2);
}
virtual ~GraphDataBusDataOut() = default;

virtual void Process(int32_t numSamples, std::vector<NodeGraphInput>& inputs, std::vector<NodeGraphOutput>& outputs) override;
protected:
Expand Down

0 comments on commit dea04fb

Please sign in to comment.