Fix fatal spelling error.

This commit is contained in:
Axel Naumann 2014-09-23 14:29:25 +02:00 committed by sftnight
parent 910832a807
commit 3db7197ea9

View File

@ -339,9 +339,10 @@ namespace cling {
for (unsigned i = 0, e = D->getNumParams(); i != e; ++i) {
if (i) Out() << ", ";
Visit(D->getParamDecl(i));
if (m_SkipFlag)
if (m_SkipFlag) {
skipCurrentDecl(true);
return;
}
}
if (FT->isVariadic()) {