aboutsummaryrefslogtreecommitdiff
path: root/src/.clang-format
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2017-06-15 17:31:58 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2017-06-15 17:31:58 +0200
commit131a8ceb731b4c0f3c2b5f189f2d4e7c928edf52 (patch)
tree7b33c4b339c4ce71d96db2158eff2cf86b37e3a7 /src/.clang-format
parent228c319a944b0ba7c835b1909ee1c2056c652eb1 (diff)
downloadbitcoin-131a8ceb731b4c0f3c2b5f189f2d4e7c928edf52.tar.xz
Make clang-format use C++11 features (e.g. A<A<int>> instead of A<A<int> >)
Diffstat (limited to 'src/.clang-format')
-rw-r--r--src/.clang-format2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/.clang-format b/src/.clang-format
index fc53509138..5918819d13 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