diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-04-08 21:33:23 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-04-08 21:33:23 +0000 |
commit | f19ac0ede900dae8188eae0362027e60bfa82a32 (patch) | |
tree | fb13a15dbe02acb3e93a7de7a30bdfb70975fd1b /clang/test/SemaCXX/class.cpp | |
parent | d9235dbc02f6b7054952b25a22c16670dfa8cb92 (diff) | |
download | bcm5719-llvm-f19ac0ede900dae8188eae0362027e60bfa82a32.tar.gz bcm5719-llvm-f19ac0ede900dae8188eae0362027e60bfa82a32.zip |
Downgrade the "declaration does not declare anything" error to a
warning. It's not harmful to have such pointless declarations, and GCC
does not diagnose this issue consistently.
llvm-svn: 100814
Diffstat (limited to 'clang/test/SemaCXX/class.cpp')
-rw-r--r-- | clang/test/SemaCXX/class.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/class.cpp b/clang/test/SemaCXX/class.cpp index 508ca4d7652..7eea67ad445 100644 --- a/clang/test/SemaCXX/class.cpp +++ b/clang/test/SemaCXX/class.cpp @@ -103,7 +103,7 @@ void ogfn() // PR3020: This used to crash due to double ownership of C4. struct C4; - C4; // expected-error {{declaration does not declare anything}} + C4; // expected-warning {{declaration does not declare anything}} } struct C4 { |