1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

remove redundant semicolons

This commit is contained in:
shengyu
2021-10-27 20:19:05 +08:00
parent 60f949e36f
commit 9dadc06e64
8 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -140,7 +140,7 @@ public:
// FIXME: This thing will likely break stuff once we introduce
// "multi-source streaming", a better design needs to be proposed
// at that stage.
virtual void handleNewStream() {}; // do nothing here by default
virtual void handleNewStream() {} // do nothing here by default
// This method is called for every IslandExecutable when
// the stream-based execution is stopped.
+2 -2
View File
@@ -69,8 +69,8 @@ struct ChangeT
{
struct Base
{
virtual void commit (ade::Graph & ) {};
virtual void rollback(ade::Graph & ) {};
virtual void commit (ade::Graph & ) {}
virtual void rollback(ade::Graph & ) {}
virtual ~Base() = default;
};