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 | d46aa50622a298f66fba30f3f1b7682ff2ece013 (patch) | |
tree | 93a6d61a9d792b73ea8f462a2f7660acdc88f189 | |
parent | fed0e003ebcc6cfab15e3ca649ee5a7d430f6b87 (diff) |
Prep for new warning.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76643 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Index/cxx-operator-overload.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Index/cxx-operator-overload.cpp b/test/Index/cxx-operator-overload.cpp index ffea76662d..8f12f1661f 100644 --- a/test/Index/cxx-operator-overload.cpp +++ b/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 && |