6 lines
79 B
C
6 lines
79 B
C
|
void A1(const int &In, int &Out) {
|
||
|
if (In > 123) // NOLINT
|
||
|
Out = 123;
|
||
|
}
|
||
|
|