Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/dmd/aggregate.d
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ extern (C++) abstract class AggregateDeclaration : ScopeDsymbol

Expression getRTInfo; // pointer to GC info generated by object.RTInfo(this)

final extern (D) this(Loc loc, Identifier id)
final extern (D) this(const ref Loc loc, Identifier id)
{
super(id);
this.loc = loc;
Expand Down
2 changes: 1 addition & 1 deletion src/dmd/aliasthis.d
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ extern (C++) final class AliasThis : Dsymbol
{
Identifier ident;

extern (D) this(Loc loc, Identifier ident)
extern (D) this(const ref Loc loc, Identifier ident)
{
super(null); // it's anonymous (no identifier)
this.loc = loc;
Expand Down
Loading