From: James Zern Date: Tue, 26 Jul 2016 23:34:54 +0000 (-0700) Subject: .clang-format: disable DerivePointerAlignment X-Git-Tag: v1.6.1~370 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4290800b21478a3f9548c58b4f15c5ba5393073;p=libvpx .clang-format: disable DerivePointerAlignment everything outside of third_party should follow 'PointerAlignment: right' i.e., associate the '*' with the variable + add a note about the clang-format that generated this file Change-Id: I13e3f4f5fb6e22a8fa7fc3d06879c995b7c41a39 --- diff --git a/.clang-format b/.clang-format index 1599ff01f..67d2f6240 100644 --- a/.clang-format +++ b/.clang-format @@ -1,6 +1,7 @@ --- Language: Cpp # BasedOnStyle: Google +# Generated with clang-format 3.7.1 AccessModifierOffset: -1 AlignAfterOpenBracket: true AlignConsecutiveAssignments: false @@ -28,7 +29,7 @@ ConstructorInitializerAllOnOneLineOrOnePerLine: false ConstructorInitializerIndentWidth: 4 ContinuationIndentWidth: 4 Cpp11BracedListStyle: false -DerivePointerAlignment: true +DerivePointerAlignment: false DisableFormat: false ExperimentalAutoDetectBinPacking: false ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]