From 53ff69130cc028c103448651f8c6eb25df49e3f6 Mon Sep 17 00:00:00 2001 From: Martchus Date: Thu, 4 May 2017 22:43:20 +0200 Subject: [PATCH] Set clang-format standard to Cpp11 * Prevents clang-format to mess up std::string literals like "foo"s * As side-effect is will now use e.g. A> instead of A > --- coding-style.clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coding-style.clang-format b/coding-style.clang-format index 8fdddd3..c61d714 100644 --- a/coding-style.clang-format +++ b/coding-style.clang-format @@ -88,7 +88,7 @@ SpacesInContainerLiterals: true SpacesInCStyleCastParentheses: false SpacesInParentheses: false SpacesInSquareBrackets: false -Standard: Cpp03 +Standard: Cpp11 TabWidth: 8 UseTab: Never ...