diff --git a/src/Coordination/tests/gtest_coordination.cpp b/src/Coordination/tests/gtest_coordination.cpp index c922859bd2c..710670f5b16 100644 --- a/src/Coordination/tests/gtest_coordination.cpp +++ b/src/Coordination/tests/gtest_coordination.cpp @@ -832,8 +832,8 @@ TEST_P(CoordinationTest, ChangelogTestLostFiles) struct IntNode { int value; - IntNode(int value_) : value(value_) { } - uint64_t sizeInBytes() const { return sizeof value; } + IntNode(int value_) : value(value_) { } // NOLINT(google-explicit-constructor) + UInt64 sizeInBytes() const { return sizeof value; } IntNode & operator=(int rhs) { this->value = rhs;