Skip to content

Commit 32ee464

Browse files
committed
Format
1 parent b2d34bf commit 32ee464

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lib/vfvalue.h

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,12 @@ namespace ValueFlow
276276
FORWARD,
277277
REVERSE
278278
} flow : 2;
279-
bool isReverse() const { return flow == Flow::REVERSE; }
280-
void setFlow(Flow f) { flow = f; }
279+
bool isReverse() const {
280+
return flow == Flow::REVERSE;
281+
}
282+
void setFlow(Flow f) {
283+
flow = f;
284+
}
281285

282286
/** value relies on safe checking */
283287
// cppcheck-suppress premium-misra-cpp-2023-12.2.1

0 commit comments

Comments
 (0)