Fix unintended negation typo.

This commit is contained in:
Vassil Vassilev 2020-03-17 18:39:17 +02:00 committed by jenkins
parent e16a3b2e19
commit 7581cf55c8

View File

@ -605,7 +605,7 @@ namespace cling {
CI->clearOutputFiles(/*EraseFiles=*/shouldEraseOutputFiles);
LangOptions& LO = CI->getLangOpts();
if (!LO.getCompilingModule() != clang::LangOptions::CMK_None) {
if (LO.getCompilingModule() != clang::LangOptions::CMK_None) {
if (DisableFree) {
CI->resetAndLeakPreprocessor();
CI->resetAndLeakSourceManager();