We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8740ff8 commit 833839bCopy full SHA for 833839b
clang/include/clang/ASTMatchers/ASTMatchers.h
@@ -6519,11 +6519,11 @@ AST_POLYMORPHIC_MATCHER(
6519
/// Given
6520
/// \code
6521
/// void a(int);
6522
-/// void b(long);
+/// void b(unsigned long);
6523
/// void c(double);
6524
/// \endcode
6525
/// functionDecl(hasAnyParameter(hasType(isInteger())))
6526
-/// matches "a(int)", "b(long)", but not "c(double)".
+/// matches "a(int)", "b(unsigned long)", but not "c(double)".
6527
AST_MATCHER(QualType, isInteger) {
6528
return Node->isIntegerType();
6529
}
0 commit comments