[clang-format] Remove dead code in FormatTestComments, NFC

llvm-svn: 295044
This commit is contained in:
Krasimir Georgiev 2017-02-14 10:35:42 +00:00
parent 52c1d7eb11
commit 93a8e9df44
1 changed files with 0 additions and 7 deletions

View File

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