diff options
| author | Aaron Ballman <aaron@aaronballman.com> | 2015-02-16 14:14:01 +0000 |
|---|---|---|
| committer | Aaron Ballman <aaron@aaronballman.com> | 2015-02-16 14:14:01 +0000 |
| commit | 61005bc5de3304bfa897a607bab1b12374266961 (patch) | |
| tree | e88a2b8d1ca5588cbe34cb9107d88b68eea5a74f | |
| parent | 1236868f857c67014679d16942543a61553849a7 (diff) | |
| download | bcm5719-llvm-61005bc5de3304bfa897a607bab1b12374266961.tar.gz bcm5719-llvm-61005bc5de3304bfa897a607bab1b12374266961.zip | |
Reverting a switch from LLVM_DELETED_FUNCTION to = delete; this test should not have changed.
llvm-svn: 229394
| -rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index 07b4a246393..242d2ba15e8 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -5533,7 +5533,7 @@ TEST_F(FormatTest, FormatsCasts) { verifyFormat("int a = alignof(int) * b;", getGoogleStyle()); verifyFormat("template <> void f<int>(int i) SOME_ANNOTATION;"); verifyFormat("f(\"%\" SOME_MACRO(ll) \"d\");"); - verifyFormat("aaaaa &operator=(const aaaaa &) = delete;"); + verifyFormat("aaaaa &operator=(const aaaaa &) LLVM_DELETED_FUNCTION;"); // These are not casts, but at some point were confused with casts. verifyFormat("virtual void foo(int *) override;"); |

