Browse Source

Merge pull request #467 from ddobrev/master

C#-printed qualified names for template specialisations
pull/468/head
João Matos 10 years ago
parent
commit
3e39fc4da3
  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