Turn off a warning caused by my last patch.

llvm-svn: 181464
This commit is contained in:
Fariborz Jahanian 2013-05-08 20:29:57 +00:00
parent f83beab4bd
commit ebb262f79c
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ void Lexer::lexCommentText(Token &T) {
if (!Info) {
formTokenWithChars(T, TokenPtr, tok::unknown_command);
T.setUnknownCommandName(CommandName);
if (Info = Traits.getTypoCorrectCommandInfo(CommandName)) {
if ((Info = Traits.getTypoCorrectCommandInfo(CommandName))) {
StringRef CorrectedName = Info->Name;
SourceRange CommandRange(T.getLocation().getLocWithOffset(1),
T.getEndLocation());