From a5935646966b3e91c33f76bca66ffb80bb46b0dc Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Fri, 23 Jul 2004 22:48:27 +0000 Subject: [PATCH] Bools fix from Mark Traudt git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6061 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Lib/csharp/csharp.swg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SWIG/Lib/csharp/csharp.swg b/SWIG/Lib/csharp/csharp.swg index 9f6329384..d3fdc1a6a 100644 --- a/SWIG/Lib/csharp/csharp.swg +++ b/SWIG/Lib/csharp/csharp.swg @@ -12,7 +12,7 @@ * The cstype typemap contains the C# type used in the C# proxy classes, type wrapper classes and module class. */ /* Primitive types */ -%typemap(ctype) bool, const bool & "bool" +%typemap(ctype) bool, const bool & "unsigned int" %typemap(ctype) char, const char & "char" %typemap(ctype) signed char, const signed char & "signed char" %typemap(ctype) unsigned char, const unsigned char & "unsigned short"