Fix unintended negation typo.
This commit is contained in:
parent
e16a3b2e19
commit
7581cf55c8
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user