Files
llvm-project/clang-tools-extra/test/clang-tidy/macros.cpp
Alexander Kornienko 5eb134cc20 [clang-tidy] google-explicit-constructor: improve the warning message
Also switch some more tests to %check_clang_tidy.

llvm-svn: 254216
2015-11-28 02:25:02 +00:00

8 lines
268 B
C++

// RUN: clang-tidy -checks='-*,google-explicit-constructor' %s -- | FileCheck %s
#define Q(name) class name { name(int i); }
Q(A);
// CHECK: :[[@LINE-1]]:3: warning: single-argument constructors must be marked explicit
// CHECK: :3:30: note: expanded from macro 'Q'