From 61ceb35ed93c12dfe2d20ca4176b82ced345db92 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Thu, 6 Mar 2003 23:48:01 +0000 Subject: [PATCH] The long long typemaps have been rewritten so that they can be more easily used with non ISO compilers, like Visual C++. For example if you are wrapping the Windows 64 bit type __int64 the long long typemaps can be used with %apply: %apply long long { __int64 }; __int64 value1(__int64 x); __int64 will now appear in the generated code instead of long long. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4444 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- CHANGES.current | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGES.current b/CHANGES.current index 0af31a420..3f5eb0574 100644 --- a/CHANGES.current +++ b/CHANGES.current @@ -1,5 +1,16 @@ Version 1.3.18 (In progress) ============================ +03/06/2003: cheetah (William Fulton) + The long long typemaps have been rewritten so that they can be more + easily used with non ISO compilers, like Visual C++. For example + if you are wrapping the Windows 64 bit type __int64 the long long + typemaps can be used with %apply: + + %apply long long { __int64 }; + __int64 value1(__int64 x); + + __int64 will now appear in the generated code instead of long long. + 03/06/2003: beazley *** DEVELOPER CHANGE *** Swig module mutation has been changed slightly. When a language