diff options
author | Jacob Keeler <jacob.keeler@livioradio.com> | 2018-03-07 10:05:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-07 10:05:23 -0500 |
commit | c8793c6520426155b3e20c2678ce66bf078f72ef (patch) | |
tree | 3951f52a1a4b39ef8572da8817fb199a8cf2d8d9 /.clang-format | |
parent | 1f574a2061bf5b746c6bf3734c647a4a6ba3dfd1 (diff) | |
parent | 95aec12cbd07087af530413e574415056e45e067 (diff) | |
download | sdl_core-c8793c6520426155b3e20c2678ce66bf078f72ef.tar.gz |
Merge branch 'develop' into hotfix/add_FAQ_to_READMEhotfix/add_FAQ_to_README
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.clang-format b/.clang-format index 8515b05b85..1df4dd03b4 100644 --- a/.clang-format +++ b/.clang-format @@ -1,5 +1,6 @@ --- Language: Cpp +Standard: Cpp03 BasedOnStyle: Google AllowShortFunctionsOnASingleLine: Empty AllowShortIfStatementsOnASingleLine: false @@ -9,3 +10,6 @@ BinPackParameters: false BreakConstructorInitializersBeforeComma: true DerivePointerAlignment: false TabWidth: 2 +# Force pointers to the type for C++. +DerivePointerAlignment: false +PointerAlignment: Left |