diff options
author | Krasimir Georgiev <krasimir@google.com> | 2017-02-14 10:35:42 +0000 |
---|---|---|
committer | Krasimir Georgiev <krasimir@google.com> | 2017-02-14 10:35:42 +0000 |
commit | 93a8e9df44ee2e858f29c64fb68ae840e34de879 (patch) | |
tree | 6e36206b07a8c6ed063fb97d4fca0acbedddd1ab /clang/unittests/Format/FormatTestComments.cpp | |
parent | 52c1d7eb1171565fd3c000099fd2bee20e35e28e (diff) | |
download | bcm5719-llvm-93a8e9df44ee2e858f29c64fb68ae840e34de879.tar.gz bcm5719-llvm-93a8e9df44ee2e858f29c64fb68ae840e34de879.zip |
[clang-format] Remove dead code in FormatTestComments, NFC
llvm-svn: 295044
Diffstat (limited to 'clang/unittests/Format/FormatTestComments.cpp')
-rw-r--r-- | clang/unittests/Format/FormatTestComments.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/clang/unittests/Format/FormatTestComments.cpp b/clang/unittests/Format/FormatTestComments.cpp index a6d2f29638a..f5fddaa6a58 100644 --- a/clang/unittests/Format/FormatTestComments.cpp +++ b/clang/unittests/Format/FormatTestComments.cpp @@ -20,7 +20,6 @@ #define DEBUG_TYPE "format-test" using clang::tooling::ReplacementTest; -using clang::tooling::toReplacements; namespace clang { namespace format { @@ -67,12 +66,6 @@ protected: EXPECT_EQ(Code.str(), format(test::messUp(Code), Style)); } - void verifyIncompleteFormat(llvm::StringRef Code, - const FormatStyle &Style = getLLVMStyle()) { - EXPECT_EQ(Code.str(), - format(test::messUp(Code), Style, IC_ExpectIncomplete)); - } - void verifyGoogleFormat(llvm::StringRef Code) { verifyFormat(Code, getGoogleStyle()); } |