We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2d34bf commit 32ee464Copy full SHA for 32ee464
1 file changed
lib/vfvalue.h
@@ -276,8 +276,12 @@ namespace ValueFlow
276
FORWARD,
277
REVERSE
278
} flow : 2;
279
- bool isReverse() const { return flow == Flow::REVERSE; }
280
- void setFlow(Flow f) { flow = f; }
+ bool isReverse() const {
+ return flow == Flow::REVERSE;
281
+ }
282
+ void setFlow(Flow f) {
283
+ flow = f;
284
285
286
/** value relies on safe checking */
287
// cppcheck-suppress premium-misra-cpp-2023-12.2.1
0 commit comments