MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / f

Function f

tests/Issue331_2.cpp:1–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1int f(int num)
2{
3 if (num > 0)
4 return num;
5 else
6 do {
7 return num;
8 } while(0);
9
10 if (num > 0)
11 do {
12 return num;
13 } while(0);
14 else
15 return num;
16}
17

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected