Remove debug statements

This commit is contained in:
Philippe Canal 2015-09-28 12:08:58 -05:00 committed by sftnight
parent 5ec73f0aa2
commit 2555f2e6e8

View File

@ -458,16 +458,6 @@ namespace cling {
TheQT = clang::Sema::GetTypeFromParser(Res.get(), &TSI);
}
}
if (0 && quickFindReturns && TheQT != quickFind) {
fprintf(stderr,"findType: results differs:\n");
fprintf(stderr,"findType: quickFind:\n");
if (!quickFind.isNull()) quickFind.dump();
else fprintf(stderr,"\tno type\n");
fprintf(stderr,"findType: slow find:\n");
if (!TheQT.isNull()) TheQT.dump();
else fprintf(stderr,"\tno type\n");
//TheQT->dump();
}
return TheQT;
}