File tree 4 files changed +5
-8
lines changed
iceoryx_dust/vocabulary/include/iox/detail
iceoryx_hoofs/design/include/iox/detail/newtype
4 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 5
5
# - hicpp-member-init (duplicate of cppcoreguidelines-pro-type-member-init)
6
6
# - performance-move-const-arg (duplicate of hicpp-move-const-arg)
7
7
# - bugprone-use-after-move (duplicate of hicpp-move-const-arg)
8
+ #
9
+ # NOTE: following checks are disabled because they are deprecated
10
+ # - cert-dcl21-cpp
8
11
9
12
Checks : '
10
13
-*,
@@ -32,6 +35,8 @@ hicpp-*,
32
35
-readability-use-anyofallof,
33
36
-readability-named-parameter,
34
37
38
+ -cert-dcl21-cpp
39
+
35
40
'
36
41
37
42
# ## Temporarily disabled because massive API changes:
Original file line number Diff line number Diff line change @@ -80,8 +80,6 @@ class span_iterator final
80
80
return *this ;
81
81
}
82
82
83
- // Rule DCL21-CPP is deprecated
84
- // NOLINTNEXTLINE(cert-dcl21-cpp)
85
83
constexpr span_iterator operator ++(int ) noexcept
86
84
{
87
85
span_iterator ret = *this ;
@@ -97,8 +95,6 @@ class span_iterator final
97
95
return *this ;
98
96
}
99
97
100
- // Rule DCL21-CPP is deprecated
101
- // NOLINTNEXTLINE(cert-dcl21-cpp)
102
98
constexpr span_iterator operator --(int ) noexcept
103
99
{
104
100
span_iterator ret = *this ;
Original file line number Diff line number Diff line change @@ -36,8 +36,6 @@ struct Decrementable
36
36
return Derived{--internal::newTypeRefAccessor (self)};
37
37
}
38
38
39
- // Rule DCL21-CPP is deprecated
40
- // NOLINTNEXTLINE(cert-dcl21-cpp)
41
39
friend Derived operator --(T& self, int ) noexcept
42
40
{
43
41
return Derived{internal::newTypeRefAccessor (self)--};
Original file line number Diff line number Diff line change @@ -36,8 +36,6 @@ struct Incrementable
36
36
return Derived{++internal::newTypeRefAccessor (self)};
37
37
}
38
38
39
- // Rule DCL21-CPP is deprecated
40
- // NOLINTNEXTLINE(cert-dcl21-cpp)
41
39
friend Derived operator ++(T& self, int ) noexcept
42
40
{
43
41
return Derived{internal::newTypeRefAccessor (self)++};
You can’t perform that action at this time.
0 commit comments