Spelling.

This commit is contained in:
Vassil Vassilev 2014-09-20 21:50:28 +02:00 committed by sftnight
parent 7efdd91555
commit c1a2415305

View File

@ -21,16 +21,16 @@ namespace cling {
do {
// If the input is "some//string" or '//some/string' we need to disable
// the comment checks.
bool hasQuoteOrAnterisk = false;
bool hasQuoteOrApostrophe = false;
for (unsigned i = 0, e = m_ParenStack.size(); i < e; ++i) {
int entry = m_ParenStack[i];
if (entry == (int)tok::quote || entry == (int)tok::apostrophe) {
hasQuoteOrAnterisk = true;
hasQuoteOrApostrophe = true;
break;
}
}
MetaLexer::LexPunctuatorAndAdvance(curPos, Tok,
/*skipComments*/hasQuoteOrAnterisk);
/*skipComments*/hasQuoteOrApostrophe);
int kind = (int)Tok.getKind();
// if (kind == tok::hash) {