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

Class X

tests/TemporaryHandler2Test.cpp:4–11  ·  view source on GitHub ↗

: C08:ConstReturnValues.cpp Constant return by value Result cannot be used as an lvalue

Source from the content-addressed store, hash-verified

2// Constant return by value
3// Result cannot be used as an lvalue
4class X
5{
6 int i;
7
8public:
9 X(int ii = 0);
10 void modify();
11};
12
13X::X(int ii)
14{

Callers 4

f5Function · 0.70
f6Function · 0.70
f8Function · 0.70
mainFunction · 0.70

Calls

no outgoing calls

Tested by 4

f5Function · 0.56
f6Function · 0.56
f8Function · 0.56
mainFunction · 0.56