2016-11-03 05:14:22 +08:00
|
|
|
// RUN: %check_clang_tidy %s google-explicit-constructor,clang-diagnostic-unused-variable,clang-analyzer-core.UndefinedBinaryOperatorResult %t -- -extra-arg=-Wunused-variable -- -I%S/Inputs/nolint
|
|
|
|
|
2017-01-24 20:42:26 +08:00
|
|
|
#include "trigger_warning.h"
|
|
|
|
void I(int& Out) {
|
|
|
|
int In;
|
|
|
|
A1(In, Out);
|
|
|
|
}
|
|
|
|
// CHECK-MESSAGES-NOT: trigger_warning.h:{{.*}} warning
|
|
|
|
// CHECK-MESSAGES-NOT: :[[@LINE-4]]:{{.*}} note
|
2014-02-28 08:27:50 +08:00
|
|
|
|
|
|
|
class A { A(int i); };
|
2015-11-28 10:25:02 +08:00
|
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:11: warning: single-argument constructors must be marked explicit
|
2014-02-28 08:27:50 +08:00
|
|
|
|
|
|
|
class B { B(int i); }; // NOLINT
|
|
|
|
|
|
|
|
class C { C(int i); }; // NOLINT(we-dont-care-about-categories-yet)
|
2016-05-05 05:18:31 +08:00
|
|
|
|
|
|
|
void f() {
|
|
|
|
int i;
|
|
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:7: warning: unused variable 'i' [clang-diagnostic-unused-variable]
|
|
|
|
int j; // NOLINT
|
|
|
|
}
|
|
|
|
|
2016-09-25 00:06:53 +08:00
|
|
|
#define MACRO(X) class X { X(int i); };
|
|
|
|
MACRO(D)
|
|
|
|
// CHECK-MESSAGES: :[[@LINE-1]]:7: warning: single-argument constructors must be marked explicit
|
|
|
|
MACRO(E) // NOLINT
|
|
|
|
|
|
|
|
#define MACRO_NOARG class F { F(int i); };
|
|
|
|
MACRO_NOARG // NOLINT
|
|
|
|
|
|
|
|
#define MACRO_NOLINT class G { G(int i); }; // NOLINT
|
|
|
|
MACRO_NOLINT
|
|
|
|
|
|
|
|
#define DOUBLE_MACRO MACRO(H) // NOLINT
|
|
|
|
DOUBLE_MACRO
|
|
|
|
|
2016-11-03 05:14:22 +08:00
|
|
|
// CHECK-MESSAGES: Suppressed 8 warnings (8 NOLINT)
|