From 073571a88aebdc557f0fedf01089578e86ea363b Mon Sep 17 00:00:00 2001 From: denchat <19730041+denchat@users.noreply.github.com> Date: Thu, 9 May 2019 13:48:40 +0700 Subject: [PATCH] missing that semicolon! --- test/format-test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/format-test.cc b/test/format-test.cc index 2874290c..20ff737f 100644 --- a/test/format-test.cc +++ b/test/format-test.cc @@ -2495,7 +2495,7 @@ TEST(FormatTest, FmtStringInTemplate) { // type in this mode. If this is the case __cpp_char8_t will be defined. #ifndef __cpp_char8_t // Locally provide type char8_t defined in format.h -using fmt::char8_t +using fmt::char8_t; #endif TEST(FormatTest, ConstructU8StringViewFromCString) {