aboutsummaryrefslogtreecommitdiff
path: root/unittests/AST/CommentLexer.cpp
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-08-31 10:35:30 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-08-31 10:35:30 +0000
commitaf503a6f218cbef8704609812668360b0cbd0b60 (patch)
tree60b26759b4d4d485af9195303d293c695fe081d6 /unittests/AST/CommentLexer.cpp
parentda5922f4864b5da254c6676af8833c42adaa6d86 (diff)
Remove the useless CommentOptions class.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162986 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/AST/CommentLexer.cpp')
-rw-r--r--unittests/AST/CommentLexer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/AST/CommentLexer.cpp b/unittests/AST/CommentLexer.cpp
index 1168d1d143..b7bc078392 100644
--- a/unittests/AST/CommentLexer.cpp
+++ b/unittests/AST/CommentLexer.cpp
@@ -50,7 +50,7 @@ void CommentLexerTest::lexString(const char *Source,
SourceLocation Begin = SourceMgr.getLocForStartOfFile(File);
comments::CommandTraits Traits;
- comments::Lexer L(Allocator, Traits, Begin, CommentOptions(),
+ comments::Lexer L(Allocator, Traits, Begin,
Source, Source + strlen(Source));
while (1) {