diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-01-14 17:51:21 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-01-16 08:48:24 +0100 |
commit | 40323407df65ef8f40648c51ab9b4574ea985d7f (patch) | |
tree | 832aa84229b3f6c4f9bea20df501dda1ebbf95a6 /modules/theora | |
parent | 3890256fc57eafb2db83d328b8caf772188e21d4 (diff) |
Style: No break before list brace
clang-format does not handle that well *at all*.
For the reference, found the relevant pieces of code with:
`ag "=[ "$'\t'"]?"$'\n'"[ "$'\t'"]?{" --ignore=thirdparty`
Diffstat (limited to 'modules/theora')
-rw-r--r-- | modules/theora/yuv2rgb.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/theora/yuv2rgb.h b/modules/theora/yuv2rgb.h index 431b47e651..3b81607a65 100644 --- a/modules/theora/yuv2rgb.h +++ b/modules/theora/yuv2rgb.h @@ -3,8 +3,7 @@ #include "typedefs.h" -static const uint32_t tables[256*3] = -{ +static const uint32_t tables[256*3] = { /* y_table */ 0x7FFFFFEDU, 0x7FFFFFEFU, |