commit | 1b5de4620a3d2f7d29dc0b35d1f97f54b0b68820 | [log] [tgz] |
---|---|---|
author | Brandon Wyman <bjwyman@gmail.com> | Fri Jun 05 17:19:43 2020 -0500 |
committer | Shawn McCarney <shawnmm@us.ibm.com> | Wed Jun 10 22:17:28 2020 +0000 |
tree | 45de9f171a653c17d0580b2636ec7b5beb5bcad8 | |
parent | 5b19ea51b5c81681c4d539edcd7773fa2cbd01ad [diff] |
clang-format: set standard to 'Latest' 'Cpp11' is an alias for 'Latest', for historical reasons. https://github.com/llvm/llvm-project/commit/e5032567903de19962333c4bf7d2edceaf4f9824#diff-b49a097415dff2837d9626d422c58ba8R82 This repository should tend towards using the latest C++ standard. Set the C++ standard to Latest. This is the desired behavior, what it is really doing, and a clearer indication of the desired standard without using the potentially confusing 'Cpp11' alias. Signed-off-by: Brandon Wyman <bjwyman@gmail.com> Change-Id: I6b9907320f206f4c6673d06b6206b6b0f9e446c9
diff --git a/.clang-format b/.clang-format index 44865d0..7192e55 100644 --- a/.clang-format +++ b/.clang-format
@@ -108,7 +108,7 @@ SpacesInCStyleCastParentheses: false SpacesInParentheses: false SpacesInSquareBrackets: false -Standard: Cpp11 +Standard: Latest TabWidth: 4 UseTab: Never ...