From 49e4182b6c9f3c78fe54b66170e992fb02e2c59a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 16 Apr 2019 17:02:52 +0200 Subject: [PATCH] ClangFormat: add comments to ignore formatting --- source/blender/blenkernel/intern/unit.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/blender/blenkernel/intern/unit.c b/source/blender/blenkernel/intern/unit.c index 25f3a57791e..5c9be274920 100644 --- a/source/blender/blenkernel/intern/unit.c +++ b/source/blender/blenkernel/intern/unit.c @@ -125,6 +125,9 @@ typedef struct bUnitCollection { int length; } bUnitCollection; +/* Keep table lignment. */ +/* clang-format off */ + #define UNIT_COLLECTION_LENGTH(def) (sizeof(def) / sizeof(bUnitDef) - 1) #define NULL_UNIT {NULL, NULL, NULL, NULL, NULL, NULL, 0.0, 0.0} @@ -329,7 +332,7 @@ static const struct bUnitCollection *bUnitSystems[][B_UNIT_TYPE_TOT] = { {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL}, }; - +/* clang-format on*/ /* internal, has some option not exposed */ static const bUnitCollection *unit_get_system(int system, int type)