SPIRV-Tools/.clang-format
Lei Zhang 1a0334edee Run clang-format to enforce Google style globally.
Note that we are more strict than Google style for one aspect:
pointer/reference indicators are adjacent to their types, not
their variables.

find . -name "*.h" -exec clang-format -i {} \;
find . -name "*.cpp" -exec clang-format -i {} \;
2015-11-10 15:56:47 -05:00

6 lines
73 B
YAML

---
Language: Cpp
BasedOnStyle: Google
DerivePointerAlignment: false
...