Skip to content

Commit

Permalink
Fix -Wextra-semi warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Beard <[email protected]>
  • Loading branch information
chrisbeard authored and pniedzielski committed Apr 10, 2024
1 parent b55cfb9 commit f278fc9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ class CommandProcessor {
// CREATORS

/// Default constructor.
CommandProcessor(){};
CommandProcessor() {}

virtual ~CommandProcessor(){};
virtual ~CommandProcessor() {}

// MANIPULATORS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class FileManager {
virtual mqbs::JournalFileIterator* journalFileIterator() = 0;
virtual mqbs::DataFileIterator* dataFileIterator() = 0;

virtual ~FileManager(){};
virtual ~FileManager() {}
};

class FileManagerImpl : public FileManager {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class SearchResult {
// CREATORS

/// Destructor
virtual ~SearchResult(){};
virtual ~SearchResult() {}

// MANIPULATORS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class PrometheusStatExporter {

virtual ~PrometheusStatExporter() = default;

virtual void onData(){};
virtual void onData() {}
virtual int start() = 0;
virtual void stop() = 0;
};
Expand Down

0 comments on commit f278fc9

Please sign in to comment.