[NFC][libcxxabi] Run clang-format on libcxxabi/src/cxa_guard_impl.h
I'm about to submit a change which involves re-writing most of
cxa_guard_impl.h. Running clang-format on the whole file first seems like a
good idea.
Reviewed By: ldionne, #libc_abi
Differential Revision: https://reviews.llvm.org/D108231
diff --git a/libcxxabi/.clang-format b/libcxxabi/.clang-format
index 2d1d3be..dc6f2af 100644
--- a/libcxxabi/.clang-format
+++ b/libcxxabi/.clang-format
@@ -9,4 +9,9 @@
# Disable formatting options which may break tests.
SortIncludes: false
ReflowComments: false
+
+IndentPPDirectives: AfterHash
+
+# libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting
+ColumnLimit: 120
---