From 131a8ceb731b4c0f3c2b5f189f2d4e7c928edf52 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Thu, 15 Jun 2017 17:31:58 +0200 Subject: [PATCH] Make clang-format use C++11 features (e.g. A> instead of A >) --- src/.clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/.clang-format b/src/.clang-format index fc5350913..5918819d1 100644 --- a/src/.clang-format +++ b/src/.clang-format @@ -47,6 +47,6 @@ SpacesInAngles: false SpacesInContainerLiterals: true SpacesInCStyleCastParentheses: false SpacesInParentheses: false -Standard: Cpp03 +Standard: Cpp11 TabWidth: 8 UseTab: Never