1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-28 20:02:00 +03:00

Fix warnings when -Wextra-semi is enabled

Also, add argument -Wextra-semi if supported by the compiler.
This commit is contained in:
Daniele Sciascia
2022-09-20 11:47:43 +02:00
committed by Teemu Ollakka
parent 6caf006214
commit b5bddfe4db
5 changed files with 8 additions and 4 deletions

View File

@ -57,7 +57,7 @@ namespace wsrep
class option_value
{
public:
virtual ~option_value(){}
virtual ~option_value() {}
virtual const char* as_string() const = 0;
virtual const void* get_ptr() const = 0;
};