diff options
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()); } |