Skip to content

Commit 4085167

Browse files
committed
Use fully qualified name for modulePatterns
1 parent 882fa81 commit 4085167

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cppconv/dwriter.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8520,14 +8520,14 @@ struct DFilename
85208520
DFilename getDeclarationFilename(Declaration d, DWriterData data)
85218521
{
85228522
auto semantic = data.semantic;
8523-
string name = d.name;
8523+
string name = fullyQualifiedName(semantic, d);
85248524
if (d.name.length == 0 && d.type == DeclarationType.type
85258525
&& (d.flags & DeclarationFlags.typedef_) == 0)
85268526
{
85278527
auto d2 = getTypedefForDecl(d, data);
85288528
if (d2 !is null)
85298529
{
8530-
name = d2.name;
8530+
name = fullyQualifiedName(semantic, d2);
85318531
}
85328532
}
85338533

0 commit comments

Comments
 (0)