Skip to content

Commit ab9c91c

Browse files
committed
fix(tvm_utility): add virtual destructor to tvm_utility
Signed-off-by: Y.Hisaki <yhisaki31@gmail.com>
1 parent 9b50ae2 commit ab9c91c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

common/tvm_utility/include/tvm_utility/pipeline.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ class PipelineStage
9393
* @return The output of the pipeline
9494
*/
9595
virtual OutputType schedule(const InputType & input) = 0;
96+
virtual ~PipelineStage() {}
9697
InputType input_type_indicator_;
9798
OutputType output_type_indicator_;
9899
};

0 commit comments

Comments
 (0)