summaryrefslogtreecommitdiff
path: root/.clang-format
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2017-03-04 03:23:15 +0000
committerEric Fiselier <eric@efcs.ca>2017-03-04 03:23:15 +0000
commit1f4353379227ba3d8b44a8694fc54e0ca6de39cd (patch)
tree622b56783befcc25b0328853c60005907ca372ef /.clang-format
parent7fa83316a3e1169b936fd71f5ac6a2ee259fca97 (diff)
Fully Reformat fallback_malloc.cpp
This patch fully reformats fallback_malloc.cpp. Previously the test was a mess of different styles and indentations. This made it very hard to work in and read. Therefore I felt it was best to re-format the whole thing. Unfortuantly this means some history will be lost, but hopefully much of it will still be accessible after ignoring whitespace changes. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@296960 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to '.clang-format')
-rw-r--r--.clang-format12
1 files changed, 12 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format
new file mode 100644
index 0000000..2d1d3be
--- /dev/null
+++ b/.clang-format
@@ -0,0 +1,12 @@
+BasedOnStyle: LLVM
+
+---
+Language: Cpp
+
+AlwaysBreakTemplateDeclarations: true
+PointerAlignment: Left
+
+# Disable formatting options which may break tests.
+SortIncludes: false
+ReflowComments: false
+---