ClangFormat: disable for generated theme

This commit is contained in:
Campbell Barton 2019-04-17 19:24:38 +02:00
parent 3fe6eebf20
commit 106aea0c93
1 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,8 @@
#include "BLO_readfile.h"
/* clang-format off */
#ifdef __LITTLE_ENDIAN__
# define RGBA(c) {((c) >> 24) & 0xff, ((c) >> 16) & 0xff, ((c) >> 8) & 0xff, (c) & 0xff}
# define RGB(c) {((c) >> 16) & 0xff, ((c) >> 8) & 0xff, (c) & 0xff}
@ -1054,3 +1056,5 @@ const bTheme U_theme_default = {
},
},
};
/* clang-format on */