Files
linux-packaging-mono/external/llvm-project/clang-tools-extra/test/clang-tidy/Inputs/nolint/trigger_warning.h

6 lines
79 B
C
Raw Normal View History

void A1(const int &In, int &Out) {
if (In > 123) // NOLINT
Out = 123;
}