Skip to content

Commit

Permalink
Turn off delayed template parsing on Windows
Browse files Browse the repository at this point in the history
It is "a deprecated technique".

Co-authored-by: Bertrand Bellenot <Bertrand.Bellenot@cern.ch>
  • Loading branch information
2 people authored and jenkins committed Aug 14, 2024
1 parent c83f15b commit 7695c73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Interpreter/CIFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -444,8 +444,8 @@ namespace {
Opts.MSVCCompat = 1;
Opts.ThreadsafeStatics = 0; // FIXME: this is removing the thread guard around static init!
#endif
// Should fix http://llvm.org/bugs/show_bug.cgi?id=10528
Opts.DelayedTemplateParsing = 1;
// Disable delayed template parsing, it is "a deprecated technique".
Opts.DelayedTemplateParsing = 0;
} else {
Opts.MicrosoftExt = 0;
}
Expand Down

0 comments on commit 7695c73

Please sign in to comment.