We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e54b4c5 commit a10476fCopy full SHA for a10476f
cpp/autosar/test/rules/A8-4-8/test.cpp
@@ -46,7 +46,10 @@ constexpr A &operator|=(
46
}
47
48
enum class byte : unsigned char {};
49
-constexpr byte &operator|(const byte &lhs, const byte &rhs) noexcept {
+constexpr byte &
50
+operator|(const byte &lhs,
51
+ const byte &rhs) noexcept { // COMPLIANT - parameters are const
52
+ // qualified references
53
return lhs | rhs;
54
55
constexpr byte &operator|=(
0 commit comments