Browse Source

C#-printed qualified names for template specialisations.

Signed-off-by: Dimitar Dobrev <dpldobrev@yahoo.com>
pull/467/head
Dimitar Dobrev 10 years ago
parent
commit
2f599daec0
  1. 2
      src/Generator/Generators/CSharp/CSharpTypePrinter.cs

2
src/Generator/Generators/CSharp/CSharpTypePrinter.cs

@ -364,7 +364,7 @@ namespace CppSharp.Generators.CSharp
} }
} }
return decl.Name + (ContextKind == CSharpTypePrinterContextKind.Native ? return GetNestedQualifiedName(decl) + (ContextKind == CSharpTypePrinterContextKind.Native ?
".Internal" : string.Empty); ".Internal" : string.Empty);
} }

Loading…
Cancel
Save