We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1327971 commit 24d1a84Copy full SHA for 24d1a84
src/Generator/Types/Std/Stdlib.CSharp.cs
@@ -412,22 +412,6 @@ private static ClassTemplateSpecialization GetBasicString(Type type)
412
}
413
414
415
- [TypeMap("std::map", GeneratorKindID = GeneratorKind.CSharp_ID)]
416
- public class Map : TypeMap
417
- {
418
- public override bool IsIgnored { get { return true; } }
419
-
420
- public override Type SignatureType(TypePrinterContext ctx)
421
422
- if (ctx.Kind == TypePrinterContextKind.Native)
423
- return new CustomType("Std.Map");
424
425
- var type = Type as TemplateSpecializationType;
426
- return new CustomType(
427
- $@"System.Collections.Generic.Dictionary<{type.Arguments[0].Type}, {type.Arguments[1].Type}>");
428
- }
429
430
431
[TypeMap("FILE", GeneratorKindID = GeneratorKind.CSharp_ID)]
432
public class FILE : TypeMap
433
{
0 commit comments