From 4c4f76bd4a8e4cc8bc299101842eddb656aeaa6d Mon Sep 17 00:00:00 2001 From: Jonathan Sifuentes Date: Mon, 8 Aug 2016 13:42:19 -0700 Subject: [PATCH] Small change: make `.clang-format` use C++11 Standard I noticed this very small discrepancy, and so I changed it. The `CMakeLists` is already using C++11 standard, but the `.clang-format` was not. Signed-off-by: Jonathan Sifuentes --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 314f9f67..30151d82 100644 --- a/.clang-format +++ b/.clang-format @@ -83,7 +83,7 @@ SpacesInContainerLiterals: true SpacesInCStyleCastParentheses: false SpacesInParentheses: false SpacesInSquareBrackets: false -Standard: Cpp03 +Standard: Cpp11 TabWidth: 8 UseTab: Never ...