diff options
Diffstat (limited to 'test/buildtool/logging/logger.test.cpp')
-rw-r--r-- | test/buildtool/logging/logger.test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/buildtool/logging/logger.test.cpp b/test/buildtool/logging/logger.test.cpp index 474a656f..e0abd13a 100644 --- a/test/buildtool/logging/logger.test.cpp +++ b/test/buildtool/logging/logger.test.cpp @@ -27,8 +27,8 @@ // Stores prints from test sink instances class TestPrints { struct PrintData { - std::atomic<int> counter{}; - std::unordered_map<int, std::vector<std::string>> prints{}; + std::atomic<int> counter; + std::unordered_map<int, std::vector<std::string>> prints; }; public: |