diff options
author | Mike Stump <mrs@apple.com> | 2009-07-21 21:06:08 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-07-21 21:06:08 +0000 |
commit | e303c9e4684dd7655e98e1973e03986ee46f516a (patch) | |
tree | 32d9485bf5c612ee47b63aa476036fabd73d2f0b | |
parent | 1e35dfac179af015f22d28dc21d50d3bfedea156 (diff) | |
download | bcm5719-llvm-e303c9e4684dd7655e98e1973e03986ee46f516a.tar.gz bcm5719-llvm-e303c9e4684dd7655e98e1973e03986ee46f516a.zip |
Prep for new warning.
llvm-svn: 76643
-rw-r--r-- | clang/test/Index/cxx-operator-overload.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/Index/cxx-operator-overload.cpp b/clang/test/Index/cxx-operator-overload.cpp index ffea76662da..8f12f1661ff 100644 --- a/clang/test/Index/cxx-operator-overload.cpp +++ b/clang/test/Index/cxx-operator-overload.cpp @@ -10,8 +10,7 @@ static void bar() { Cls x4 = x1 + x2 + x3; } -Cls Cls::operator +(const Cls &RHS) { -} +Cls Cls::operator +(const Cls &RHS) { while (1) {} } // RUN: clang-cc -emit-pch %s -o %t.ast && |