summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeif Middelschulte <leif.middelschulte@gmail.com>2012-08-16 12:47:49 +0000
committerLeif Middelschulte <leif.middelschulte@gmail.com>2012-08-16 12:47:49 +0000
commit554a3f9e0186d853b1628acfd3532379e0645c99 (patch)
tree6b38c3d8832d1f8f346393fa924d0b065de9d4c7
parentf013b9d044f50b60da24574ce23d639c10bfd9e5 (diff)
downloadswig-554a3f9e0186d853b1628acfd3532379e0645c99.tar.gz
Remove copy and pasta (unsigned float and unsigned double typemaps).
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2012-c@13625 626c5289-ae23-0410-ae9c-e8d60b6d4f22
-rw-r--r--Lib/c/c.swg38
1 files changed, 4 insertions, 34 deletions
diff --git a/Lib/c/c.swg b/Lib/c/c.swg
index 79ebd8b6f..01050550a 100644
--- a/Lib/c/c.swg
+++ b/Lib/c/c.swg
@@ -155,9 +155,6 @@
%typemap(proxy) float * const "float * const"
%typemap(proxy) float* * const "float* * const"
%typemap(proxy) const float* * const "const float* * const"
-%typemap(proxy) unsigned float * const "unsigned float * const"
-%typemap(proxy) unsigned float* * const "unsigned float* * const"
-%typemap(proxy) const unsigned float* * const "const unsigned float* * const"
// double
%typemap(proxy) double, const double "double"
@@ -169,9 +166,6 @@
%typemap(proxy) double * const "double * const"
%typemap(proxy) double* * const "double* * const"
%typemap(proxy) const double* * const "const double* * const"
-%typemap(proxy) unsigned double * const "unsigned double * const"
-%typemap(proxy) unsigned double* * const "unsigned double* * const"
-%typemap(proxy) const unsigned double* * const "const unsigned double* * const"
// size_t
%typemap(proxy) size_t, const size_t "size_t"
@@ -327,9 +321,6 @@
%typemap(ctype) float * const "float * const"
%typemap(ctype) float* * const "float* * const"
%typemap(ctype) const float* * const "const float* * const"
-%typemap(ctype) unsigned float * const "unsigned float * const"
-%typemap(ctype) unsigned float* * const "unsigned float* * const"
-%typemap(ctype) const unsigned float* * const "const unsigned float* * const"
// double
%typemap(ctype) double, const double "double"
@@ -341,9 +332,6 @@
%typemap(ctype) double * const "double * const"
%typemap(ctype) double* * const "double* * const"
%typemap(ctype) const double* * const "const double* * const"
-%typemap(ctype) unsigned double * const "unsigned double * const"
-%typemap(ctype) unsigned double* * const "unsigned double* * const"
-%typemap(ctype) const unsigned double* * const "const unsigned double* * const"
// size_t
%typemap(ctype) size_t, const size_t "size_t"
@@ -657,10 +645,7 @@
// constant pointers
%typemap(couttype) float * const "float *"
%typemap(couttype) float* * const "float* *"
-%typemap(couttype) const float* * const "const float* *"
-%typemap(couttype) unsigned float * const "unsigned float *"
-%typemap(couttype) unsigned float* * const "unsigned float* *"
-%typemap(couttype) const unsigned float* * const "const unsigned float* *"
+%typemap(couttype) const float* * const "float* *"
// double
%typemap(couttype) double, const double "double"
@@ -671,10 +656,7 @@
// constant pointers
%typemap(couttype) double * const "double *"
%typemap(couttype) double* * const "double* *"
-%typemap(couttype) const double* * const "const double* *"
-%typemap(couttype) unsigned double * const "unsigned double *"
-%typemap(couttype) unsigned double* * const "unsigned double* *"
-%typemap(couttype) const unsigned double* * const "const unsigned double* *"
+%typemap(couttype) const double* * const "double* *"
// size_t
%typemap(couttype) size_t, const size_t "size_t"
@@ -828,9 +810,6 @@
%typemap(proxycouttype) float * const "float * const"
%typemap(proxycouttype) float* * const "float* * const"
%typemap(proxycouttype) const float* * const "const float* * const"
-%typemap(proxycouttype) unsigned float * const "unsigned float * const"
-%typemap(proxycouttype) unsigned float* * const "unsigned float* * const"
-%typemap(proxycouttype) const unsigned float* * const "const unsigned float* * const"
// double
%typemap(proxycouttype) double, const double "double"
@@ -842,9 +821,6 @@
%typemap(proxycouttype) double * const "double * const"
%typemap(proxycouttype) double* * const "double* * const"
%typemap(proxycouttype) const double* * const "const double* * const"
-%typemap(proxycouttype) unsigned double * const "unsigned double * const"
-%typemap(proxycouttype) unsigned double* * const "unsigned double* * const"
-%typemap(proxycouttype) const unsigned double* * const "const unsigned double* * const"
// size_t
%typemap(proxycouttype) size_t, const size_t "size_t"
@@ -1079,10 +1055,7 @@
// constant pointers
%typemap(cppouttype) float * const "float *"
%typemap(cppouttype) float* * const "float* *"
-%typemap(cppouttype) const float* * const "const float* *"
-%typemap(cppouttype) unsigned float * const "unsigned float *"
-%typemap(cppouttype) unsigned float* * const "unsigned float* *"
-%typemap(cppouttype) const unsigned float* * const "const unsigned float* *"
+%typemap(cppouttype) const float* * const "float* *"
// double
%typemap(cppouttype) double, const double "double"
@@ -1093,10 +1066,7 @@
// constant pointers
%typemap(cppouttype) double * const "double *"
%typemap(cppouttype) double* * const "double* *"
-%typemap(cppouttype) const double* * const "const double* *"
-%typemap(cppouttype) unsigned double * const "unsigned double *"
-%typemap(cppouttype) unsigned double* * const "unsigned double* *"
-%typemap(cppouttype) const unsigned double* * const "const unsigned double* *"
+%typemap(cppouttype) const double* * const "double* *"
// size_t
%typemap(cppouttype) size_t, const size_t "size_t"