about summary refs log tree commit diff homepage
path: root/.clang-format
diff options
context:
space:
mode:
authorDan Liew <daniel.liew@imperial.ac.uk>2015-12-13 20:29:07 +0000
committerDan Liew <daniel.liew@imperial.ac.uk>2015-12-13 20:33:17 +0000
commitcd77831e0a02dd138459a26c108d9d4c402b1c2a (patch)
tree5828147f2d92c5c1bedf6df4a649b590645af983 /.clang-format
parent48af356e766a73fe33cabbabc7c5edb263fb7d89 (diff)
downloadklee-cd77831e0a02dd138459a26c108d9d4c402b1c2a.tar.gz
Set C++ standard in Clang format settings file to C++03. Otherwise
template braces get reformatted the C++11 way and that breaks
compilation.
Diffstat (limited to '.clang-format')
-rw-r--r--.clang-format1
1 files changed, 1 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format
index 4f679309..dac1eef4 100644
--- a/.clang-format
+++ b/.clang-format
@@ -1,4 +1,5 @@
 ---
 Language: Cpp
 BasedOnStyle:  LLVM
+Standard: Cpp03
 ...