aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Schultz <karl@lunarg.com>2016-03-21 10:59:53 -0600
committerKarl Schultz <karl@lunarg.com>2016-03-21 10:59:53 -0600
commit64905fbfc5eb00bd773e8a602a288ebbc1c8dc65 (patch)
treee3770fcf091b2e86a307fe05ec0935a385afd4aa
parent918c283ac4f8c604b79abd0c8b5706d2a7352a34 (diff)
downloadvulkan-validation-layers-64905fbfc5eb00bd773e8a602a288ebbc1c8dc65.tar.gz
Remove faulty LineLength .clang-format directive.
The LineLength: 132 directive was making some clang-format implementations stop working. The correct directive is ColumnLimit. We also had agreed that the ColumnLimit would be 80 for all code in this repo except for layers. So remove the directive here to keep 80 as the default and to reflect current formatting. The layers folder has a .clang-format file that correctly specifies ColumnLimit: 132. Change-Id: Ic7c2a575e7d52141e3ecbc2e3644210cd85e5ac9
-rw-r--r--.clang-format1
1 files changed, 0 insertions, 1 deletions
diff --git a/.clang-format b/.clang-format
index 0f8abd3c1..74049cfe3 100644
--- a/.clang-format
+++ b/.clang-format
@@ -2,5 +2,4 @@
# We'll use defaults from the LLVM style, but with 4 columns indentation.
BasedOnStyle: LLVM
IndentWidth: 4
-LineLength: 132
...