From a8ac2d8b7694fe81181bc1bf1563985491f152ad Mon Sep 17 00:00:00 2001 From: triton Date: Fri, 18 Jan 2013 18:20:20 +0000 Subject: [PATCH] Added a type map for C's variable argument list type "va_list". --- src/Generator/Types/Std/Stdlib.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/Generator/Types/Std/Stdlib.cs b/src/Generator/Types/Std/Stdlib.cs index d7d61b27..e7a74f25 100644 --- a/src/Generator/Types/Std/Stdlib.cs +++ b/src/Generator/Types/Std/Stdlib.cs @@ -1,5 +1,14 @@ namespace Cxxi.Types.Std { + [TypeMap("va_list")] + public class VaList : TypeMap + { + public override bool IsIgnored + { + get { return true; } + } + } + [TypeMap("std::string")] [TypeMap("std::wstring")] public class String : TypeMap