From 4045d7fea2d798f0f0fb793125234ef0780ff06e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20M=C3=BCller?= Date: Tue, 11 Jul 2017 20:45:17 +0200 Subject: [PATCH] Fix warning about missing ' character --- fmt/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmt/string.h b/fmt/string.h index 2f487f4d..cb87b15e 100644 --- a/fmt/string.h +++ b/fmt/string.h @@ -8,7 +8,7 @@ */ #ifdef FMT_INCLUDE -# error Add the fmt's parent directory and not fmt itself to includes. +# error "Add the fmt's parent directory and not fmt itself to includes." #endif #ifndef FMT_STRING_H_