Turn off delayed template parsing on Windows

It is "a deprecated technique".

Co-authored-by: Bertrand Bellenot <Bertrand.Bellenot@cern.ch>
This commit is contained in:
Jonas Hahnfeld 2024-08-13 11:34:06 +02:00 committed by jenkins
parent c83f15be45
commit 7695c7302c

View File

@ -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;
}