Skip to content

Commit

Permalink
Add default initialization to field in validators_fixture
Browse files Browse the repository at this point in the history
This removes sorabot warnings

Signed-off-by: Nikita Alekseev <[email protected]>
  • Loading branch information
nickaleks committed Jan 11, 2018
1 parent a85fa18 commit c0c7848
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/module/shared_model/validators/validators_fixture.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ class ValidatorsTest : public ::testing::Test {
quorum = 2;
}

size_t public_key_size;
size_t hash_size;
uint64_t counter;
size_t public_key_size{0};
size_t hash_size{0};
uint64_t counter{0};
std::string account_id;
std::string asset_name;
std::string asset_id;
Expand Down

0 comments on commit c0c7848

Please sign in to comment.