diff options
-rw-r--r-- | lldb/unittests/Core/LogTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/unittests/Core/LogTest.cpp b/lldb/unittests/Core/LogTest.cpp index cf4d9e00ec2..8b9868f18e4 100644 --- a/lldb/unittests/Core/LogTest.cpp +++ b/lldb/unittests/Core/LogTest.cpp @@ -20,7 +20,7 @@ using namespace lldb_private; enum { FOO = 1, BAR = 2 }; static constexpr Log::Category test_categories[] = { - {"foo", "log foo", FOO}, {"bar", "log bar", BAR}, + {{"foo"}, {"log foo"}, FOO}, {{"bar"}, {"log bar"}, BAR}, }; static constexpr uint32_t default_flags = FOO; |