Anders Waldenborg
52ab7aa0ba
[clang-format] Add BitFieldColonSpacing option
This new option allows controlling if there should be spaces around
the ':' in a bitfield declaration.
BitFieldColonSpacing accepts four different values:
// "Both" - default
unsigned bitfield : 5
unsigned bf2 : 5 // AlignConsecutiveBitFields=true
// "None"
unsigned bitfield:5
unsigned bf2 :5
// "Before"
unsigned bitfield :5
unsigned bf2 :5
// "After"
unsigned bitfield: 5
unsigned bf2 : 5
Differential Revision: https://reviews.llvm.org/D84090
2020-07-20 20:55:51 +02:00
..
2019-01-19 08:50:56 +00:00
2019-01-19 08:50:56 +00:00
2020-04-13 15:14:26 +01:00
2019-11-19 16:15:21 +00:00
2018-06-04 09:04:12 +00:00
2020-06-24 13:11:18 +02:00
2020-05-15 16:40:31 +02:00
2019-09-18 18:57:09 +00:00
2020-07-20 20:55:51 +02:00
2019-01-19 08:50:56 +00:00
2020-06-05 10:32:43 +01:00
2020-06-29 09:57:47 -04:00
2020-07-07 11:56:34 +02:00
2020-07-07 11:56:34 +02:00
2020-05-30 13:15:27 +01:00
2019-01-19 08:50:56 +00:00
2020-04-14 14:11:02 +03:00
2019-01-19 08:50:56 +00:00
2020-07-07 11:56:34 +02:00
2019-04-18 00:36:51 +00:00
2020-07-20 20:55:51 +02:00
2019-07-29 13:26:48 +00:00
2020-06-27 11:35:22 +01:00
2019-03-01 09:09:54 +00:00
2020-06-27 11:35:22 +01:00
2020-05-26 18:48:49 +01:00
2019-04-24 14:43:05 +00:00
2019-01-19 08:50:56 +00:00
2020-05-20 07:42:58 +01:00
2020-05-20 07:42:58 +01:00