We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 882fa81 commit 4085167Copy full SHA for 4085167
src/cppconv/dwriter.d
@@ -8520,14 +8520,14 @@ struct DFilename
8520
DFilename getDeclarationFilename(Declaration d, DWriterData data)
8521
{
8522
auto semantic = data.semantic;
8523
- string name = d.name;
+ string name = fullyQualifiedName(semantic, d);
8524
if (d.name.length == 0 && d.type == DeclarationType.type
8525
&& (d.flags & DeclarationFlags.typedef_) == 0)
8526
8527
auto d2 = getTypedefForDecl(d, data);
8528
if (d2 !is null)
8529
8530
- name = d2.name;
+ name = fullyQualifiedName(semantic, d2);
8531
}
8532
8533
0 commit comments