|
11 | 11 | template <class Stream, \
|
12 | 12 | typename = std::enable_if_t< \
|
13 | 13 | std::remove_reference_t<Stream>::is_cbor_encoder_stream>> \
|
14 |
| - Stream &operator<<(Stream &&s, const type &var) |
| 14 | + Stream &operator<<(Stream &&s, \ |
| 15 | + const type &var) // NOLINT(bugprone-macro-parentheses) |
15 | 16 |
|
16 | 17 | #define CBOR_DECODE(type, var) \
|
17 | 18 | template <class Stream, \
|
18 | 19 | typename = std::enable_if_t< \
|
19 | 20 | std::remove_reference_t<Stream>::is_cbor_decoder_stream>> \
|
20 |
| - Stream &operator>>(Stream &&s, type &var) |
| 21 | + Stream &operator>>(Stream &&s, \ |
| 22 | + type &var) // NOLINT(bugprone-macro-parentheses) |
21 | 23 |
|
22 |
| -#define CBOR2_DECODE(...) \ |
23 |
| - fc::codec::cbor::CborDecodeStream &operator>>( \ |
| 24 | +#define CBOR2_DECODE(...) \ |
| 25 | + /* NOLINTNEXTLINE(bugprone-macro-parentheses) */ \ |
| 26 | + fc::codec::cbor::CborDecodeStream &operator>>( \ |
24 | 27 | fc::codec::cbor::CborDecodeStream &s, __VA_ARGS__ &v)
|
25 | 28 | #define CBOR2_ENCODE(...) \
|
26 | 29 | fc::codec::cbor::CborEncodeStream &operator<<( \
|
|
29 | 32 | CBOR2_DECODE(__VA_ARGS__); \
|
30 | 33 | CBOR2_ENCODE(__VA_ARGS__);
|
31 | 34 |
|
| 35 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
32 | 36 | #define _CBOR_TUPLE_1(op, m) op t.m
|
| 37 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
33 | 38 | #define _CBOR_TUPLE_2(op, m, ...) \
|
34 | 39 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_1(op, __VA_ARGS__)
|
| 40 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
35 | 41 | #define _CBOR_TUPLE_3(op, m, ...) \
|
36 | 42 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_2(op, __VA_ARGS__)
|
| 43 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
37 | 44 | #define _CBOR_TUPLE_4(op, m, ...) \
|
38 | 45 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_3(op, __VA_ARGS__)
|
| 46 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
39 | 47 | #define _CBOR_TUPLE_5(op, m, ...) \
|
40 | 48 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_4(op, __VA_ARGS__)
|
| 49 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
41 | 50 | #define _CBOR_TUPLE_6(op, m, ...) \
|
42 | 51 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_5(op, __VA_ARGS__)
|
| 52 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
43 | 53 | #define _CBOR_TUPLE_7(op, m, ...) \
|
44 | 54 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_6(op, __VA_ARGS__)
|
| 55 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
45 | 56 | #define _CBOR_TUPLE_8(op, m, ...) \
|
46 | 57 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_7(op, __VA_ARGS__)
|
| 58 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
47 | 59 | #define _CBOR_TUPLE_9(op, m, ...) \
|
48 | 60 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_8(op, __VA_ARGS__)
|
| 61 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
49 | 62 | #define _CBOR_TUPLE_10(op, m, ...) \
|
50 | 63 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_9(op, __VA_ARGS__)
|
| 64 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
51 | 65 | #define _CBOR_TUPLE_11(op, m, ...) \
|
52 | 66 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_10(op, __VA_ARGS__)
|
| 67 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
53 | 68 | #define _CBOR_TUPLE_12(op, m, ...) \
|
54 | 69 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_11(op, __VA_ARGS__)
|
| 70 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
55 | 71 | #define _CBOR_TUPLE_13(op, m, ...) \
|
56 | 72 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_12(op, __VA_ARGS__)
|
| 73 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
57 | 74 | #define _CBOR_TUPLE_14(op, m, ...) \
|
58 | 75 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_13(op, __VA_ARGS__)
|
| 76 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
59 | 77 | #define _CBOR_TUPLE_15(op, m, ...) \
|
60 | 78 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_14(op, __VA_ARGS__)
|
| 79 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
61 | 80 | #define _CBOR_TUPLE_16(op, m, ...) \
|
62 | 81 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_15(op, __VA_ARGS__)
|
| 82 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
63 | 83 | #define _CBOR_TUPLE_17(op, m, ...) \
|
64 | 84 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_16(op, __VA_ARGS__)
|
| 85 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
65 | 86 | #define _CBOR_TUPLE_18(op, m, ...) \
|
66 | 87 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_17(op, __VA_ARGS__)
|
| 88 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
67 | 89 | #define _CBOR_TUPLE_19(op, m, ...) \
|
68 | 90 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_18(op, __VA_ARGS__)
|
| 91 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
69 | 92 | #define _CBOR_TUPLE_20(op, m, ...) \
|
70 | 93 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_19(op, __VA_ARGS__)
|
| 94 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
71 | 95 | #define _CBOR_TUPLE_21(op, m, ...) \
|
72 | 96 | _CBOR_TUPLE_1(op, m) _CBOR_TUPLE_20(op, __VA_ARGS__)
|
| 97 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
73 | 98 | #define _CBOR_TUPLE_V(_1, \
|
74 | 99 | _2, \
|
75 | 100 | _3, \
|
|
94 | 119 | f, \
|
95 | 120 | ...) \
|
96 | 121 | f
|
| 122 | +// NOLINTNEXTLINE(bugprone-reserved-identifier) |
97 | 123 | #define _CBOR_TUPLE(op, ...) \
|
98 | 124 | _CBOR_TUPLE_V(__VA_ARGS__, \
|
99 | 125 | _CBOR_TUPLE_21, \
|
|
0 commit comments