summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaTemplate/class-template-ctor-initializer.cpp
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2012-01-05 04:12:21 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2012-01-05 04:12:21 +0000
commit69f90dce49124c98838ad80914c0c6642311167c (patch)
tree399db8b8101864d7da80592fbf55ff91eed352e4 /clang/test/SemaTemplate/class-template-ctor-initializer.cpp
parent0f6fb756a167bc3aea3725f66c6f6bf29bcad384 (diff)
downloadbcm5719-llvm-69f90dce49124c98838ad80914c0c6642311167c.tar.gz
bcm5719-llvm-69f90dce49124c98838ad80914c0c6642311167c.zip
PR10828: Produce a warning when a no-arguments function is declared in block
scope, when no other indication is provided that the user intended to declare a function rather than a variable. Remove some false positives from the existing 'parentheses disambiguated as a function' warning by suppressing it when the declaration is marked as 'typedef' or 'extern'. Add a new warning group -Wvexing-parse containing both of these warnings. The new warning is enabled by default; despite a number of false positives (and one bug) in clang's test-suite, I have only found genuine bugs with it when running it over a significant quantity of real C++ code. llvm-svn: 147599
Diffstat (limited to 'clang/test/SemaTemplate/class-template-ctor-initializer.cpp')
-rw-r--r--clang/test/SemaTemplate/class-template-ctor-initializer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaTemplate/class-template-ctor-initializer.cpp b/clang/test/SemaTemplate/class-template-ctor-initializer.cpp
index 81a5e2b9c66..44bb4bda791 100644
--- a/clang/test/SemaTemplate/class-template-ctor-initializer.cpp
+++ b/clang/test/SemaTemplate/class-template-ctor-initializer.cpp
@@ -49,7 +49,7 @@ namespace PR7259 {
int
main (void)
{
- Final final();
+ Final final;
return 0;
}
}
OpenPOWER on IntegriCloud