1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-04-18 10:24:01 +03:00

Fix compilation for gcc 4.8

This commit is contained in:
Teemu Ollakka 2025-04-08 11:59:48 +03:00
parent 324b01e431
commit e55f01ce1e

View File

@ -119,7 +119,7 @@ namespace wsrep
*/ */
bool is_final() const bool is_final() const
{ {
return (status_ != status::primary && members_.empty() && own_index_ == -1); return (status_ != primary && members_.empty() && own_index_ == -1);
} }
/** /**