Browse Source

Disabled the type maps for va_list and std::list in the C# generator.

Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
pull/696/head
Dimitar Dobrev 10 years ago
parent
commit
589cb6b0df
  1. 4
      src/Generator/Types/Std/Stdlib.cs

4
src/Generator/Types/Std/Stdlib.cs

@ -8,7 +8,7 @@ using CppSharp.Generators.CSharp; @@ -8,7 +8,7 @@ using CppSharp.Generators.CSharp;
namespace CppSharp.Types.Std
{
[TypeMap("va_list")]
[TypeMap("va_list", GeneratorKind = GeneratorKind.CLI)]
public class VaList : TypeMap
{
public override string CLISignature(CLITypePrinterContext ctx)
@ -346,7 +346,7 @@ namespace CppSharp.Types.Std @@ -346,7 +346,7 @@ namespace CppSharp.Types.Std
}
}
[TypeMap("std::list")]
[TypeMap("std::list", GeneratorKind = GeneratorKind.CLI)]
public class List : TypeMap
{
public override bool IsIgnored { get { return true; } }

Loading…
Cancel
Save