Skip to content

Commit 2110b24

Browse files
committed
Squashed 'libs/EXTERNAL/libblifparse/' changes from ebda7e2df..e2a99f6f4
e2a99f6f4 Fix more extra semicolons 2e2d9d4fd Remove extra semicolon git-subtree-dir: libs/EXTERNAL/libblifparse git-subtree-split: e2a99f6f45a73b34ddeb561934fa71a2aea8df36
1 parent 9c340ed commit 2110b24

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/blifparse.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ enum class LatchType;
3737

3838
class Callback {
3939
public:
40-
virtual ~Callback() {};
40+
virtual ~Callback() {}
4141

4242
//Start of parsing
4343
virtual void start_parse() = 0;

src/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ class NoOpCallback : public Callback {
1313
public:
1414
void start_parse() override {}
1515

16-
void filename(std::string /*fname*/) override {};
17-
void lineno(int /*line_num*/) override {};
16+
void filename(std::string /*fname*/) override {}
17+
void lineno(int /*line_num*/) override {}
1818

1919
void begin_model(std::string /*model_name*/) override {}
2020
void inputs(std::vector<std::string> /*inputs*/) override {}

0 commit comments

Comments
 (0)