File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ version (IN_LLVM)
55
55
{
56
56
// Return the mangled name of the RTTI Type Descriptor.
57
57
// Reverse-engineered using a few C++ exception classes.
58
- scope VisualCPPMangler v = new VisualCPPMangler(false , s.loc, global.errorSink);
58
+ scope VisualCPPMangler v = new VisualCPPMangler(s.loc, global.errorSink);
59
59
v.buf.writestring(" \1 ??_R0?AV" );
60
60
v.mangleIdent(s);
61
61
v.buf.writestring(" @8" );
Original file line number Diff line number Diff line change @@ -475,6 +475,7 @@ extern(C) void flushMixins()
475
475
version (IN_LLVM)
476
476
{
477
477
import dmd.cli : Usage;
478
+ import dmd.errors : deprecation, error;
478
479
479
480
private bool parseCLIOption (string groupName, Usage.Feature[] features)(ref Param params, const (char )* name)
480
481
{
@@ -1918,7 +1919,7 @@ version (IN_LLVM) {} else
1918
1919
if (IN_LLVM && FileName.equals(ext, bc_ext))
1919
1920
{
1920
1921
global.params.bitcodeFiles.push(file);
1921
- return null ;
1922
+ return false ;
1922
1923
}
1923
1924
if (FileName.equals(ext, target.lib_ext))
1924
1925
{
You can’t perform that action at this time.
0 commit comments