William S Fulton
fb2b1af2e7
Warning fixes for 64bit visual c++ on Windows
2015-07-03 20:59:24 +01:00
William S Fulton
edcdaaec16
Warning fixes for 64bit visual c++ on Windows
2015-07-03 20:59:24 +01:00
Nils Gladitz
925cec3a82
Add a space between literal and string macro
...
In C++11 a space between a literal and string macro is required.
2015-07-03 20:59:23 +01:00
William S Fulton
05397cf6a2
Fix syntax error when the template keyword is used in types
...
For example:
std::template vector<int> v;
2015-07-02 19:23:37 +01:00
Olly Betts
822b2355c0
Improve handling of whitespace in %pythoncode
...
Previously SWIG looked at the indentation of the first line and removed
that many characters from each subsequent line, regardless of what those
characters were. This was made worse because SWIG's preprocessor removes
any whitespace before a '#'. Fixes github issue #379 , reported by Joe
Orton.
2015-06-29 22:12:38 +12:00
Simon Marchetto
b05f0057ca
improve support of varargs
2015-06-23 16:24:35 +02:00
William S Fulton
0b436c65ca
Cosmetic parser change
...
Rename typemap_parameter_declarator as it is no longer just used for typemaps
2015-06-22 07:04:34 +01:00
William S Fulton
6890dfa881
Fix parse errors for C++11 type aliasing
...
Recently introduced by the fix for C++11 type aliasing seg fault - 117f6d00
2015-06-22 07:04:34 +01:00
Ian Lance Taylor
11d8403c3c
[Go] Fix member variables in base classes to handle CWRAP_NATURAL_VAR
...
correctly. Add a test case for the problem.
Fixes #339 .
2015-06-20 17:42:44 -07:00
William S Fulton
53b7659ebf
Fix Python pep8 warning when using -fastinit (or -O)
...
Fixes: E231 missing whitespace after ','
2015-06-16 08:11:29 +01:00
William S Fulton
180e21269d
Fix python -builtin -O and overloaded functions
...
More specifically fixes compile errors using -builtin -fastunpack -modernargs.
Recent regression (416277b ). Closes #436 .
2015-06-16 07:59:22 +01:00
William S Fulton
b94820adcf
Fix r.cxx build break
2015-06-12 23:37:08 +01:00
William S Fulton
9b2bde403b
R - Remove constantWrapper message wrapping constants
...
An implementation is still needed for constants.
2015-06-12 20:26:24 +01:00
William S Fulton
cc6970e21f
Documentation improvements for -o and -oh options
2015-06-12 06:32:58 +01:00
William S Fulton
8bd6e596d1
Cosmetics - remove references to Java in C# module
2015-06-11 19:39:51 +01:00
William S Fulton
6ab1ab57dd
Merge branch 'Sghirate-master' - C# -outfile option
...
* Sghirate-master:
changes file update for -outfile
Add in all C# command line options to the docs
C# -outfile cosmetic code fixes
[C#] Single file mode (fixes)
[C#] Single file mode (minor fix)
[C#] Single file mode
Conflicts:
CHANGES.current
2015-06-11 07:53:30 +01:00
William S Fulton
2b9b007027
C# -outfile cosmetic code fixes
2015-06-11 07:42:50 +01:00
William S Fulton
efa84dab7c
Fix warning display of types associated with 'using' and templates.
2015-06-09 07:59:49 +01:00
William S Fulton
117f6d0026
Fix C++11 type aliasing seg fault.
...
Closes #424
2015-06-09 07:59:22 +01:00
Frederick Parotat
b83307e354
[C#] Single file mode (fixes)
...
Renamed argument '-csout' to '-outfile'.
Reformatting (Tab spacing; Pointer style).
Chagned html documentation.
2015-06-04 14:15:00 +02:00
Frederick Parotat
0b09978219
[C#] Single file mode (minor fix)
...
Removed debug output
2015-06-03 14:26:38 +02:00
Frederick Parotat
747e22f714
[C#] Single file mode
...
Added "-csout <path>" parameter. If supplied all generated C# code will
be written to the given file. Makes it easier to integrate SWIG into
automated script based build processes.
2015-06-03 14:19:13 +02:00
William S Fulton
b8e1a66a38
Add new feature "python:cdefaultargs"
...
Controls default argument code generation to obtain the default
arguments from the C++ layer instead of the Python layer.
2015-05-28 20:11:57 +01:00
William S Fulton
986a13f1a0
Fix Python typedef bool default arguments that are not booleans.
...
Includes code optimisation in PYTHON::convertValue().
Closes #327
2015-05-27 20:55:56 +01:00
William S Fulton
0a70498591
Refactor PYTHON::convertValue
...
Remove multiple return statements for upcoming commits.
2015-05-27 08:06:23 +01:00
Ian Lance Taylor
38c7d59f81
[Go] Adjust last change to always emit a destructor.
2015-05-18 11:28:24 -07:00
Ian Lance Taylor
5bca063536
[Go] Fix bug with ignored destructor--generated code did not compile.
2015-05-18 09:53:13 -07:00
William S Fulton
54e2317b24
Fix shared_ptr of classes with private constructors and destructors.
...
Usually these use a custom deleter passed to the shared_ptr.
This also fixes the "unref" feature when used on classes with private destructors.
2015-05-14 19:03:06 +01:00
William S Fulton
775afd3579
Refactor Java director swig_override array code
...
Remove code duplication: Use new Swig::BoolArray to replace multiple
instances of ZeroedBoolArray.
Refactors #403 and #413 .
2015-05-10 11:40:42 +01:00
Olly Betts
9086eb351c
Merge pull request #413 from LindleyF/master
...
Don't include an STL header in SWIG.
2015-05-08 11:57:13 +12:00
Lindley French
8f19d77fec
Don't include an STL header in SWIG.
2015-05-07 11:29:47 -07:00
Olly Betts
c2972b8bf0
[Python] Deal with an integer as the default value of a bool
...
parameter in the C++ prototype. Fixes github #327 , reported by
Greg Allen.
2015-05-07 16:25:32 +12:00
Olly Betts
8fc7796643
Merge pull request #403 from LindleyF/master
...
Zero-initialize swig_override in the director constructor.
2015-05-07 13:26:04 +12:00
Lindley French
159b3c7958
Use a bitset which is automatically initialized to 0, instead of a bool array which is not.
2015-05-06 11:33:28 -07:00
Olly Betts
b19d506db7
Suppress warning 325 "Nested class not currently supported (Foo
...
ignored)" when Foo has already been explicitly ignored with
"%ignore".
2015-05-05 18:07:49 +12:00
William S Fulton
428b6176df
Add support for friend templates, including operator overloading.
...
Closes #196 .
2015-05-05 06:48:25 +01:00
Ian Lance Taylor
48263f4802
[Go] Make sure that arguments for which use memcpy when calling C are
...
still live after the call. This ensures that they will not be
collected if the GC runs during the call.
2015-05-04 15:11:31 -07:00
Lindley French
5f0181bfdd
Too hard to conditionally define the memset....instead just make sure the array is defined even if it's unused.
2015-05-01 12:40:07 -07:00
William S Fulton
463b2a324c
Cosmetic rename COPERATOR to CONVERSIONOPERATOR
...
Was never very obvious what C in COPERATOR was.
2015-05-01 19:26:09 +01:00
William S Fulton
cf29b90a2b
Fix comments and newlines within operator definitions
...
Fix handling of conversion operators where the operator is split over multiple lines or
has comments within the operator type.
Also fix similar problem with normal operators which gave a syntax error if split over
multiple lines or had a comment within the operator declaration.
Closes #401
2015-05-01 19:22:38 +01:00
Lindley French
e8ca8fb2e6
Only output memset if the array exists.
2015-04-30 23:14:48 -07:00
Lindley French
8acca78953
Zero-initialize swig_override in the director constructor.
2015-04-30 21:16:30 -07:00
Olly Betts
d26a505dad
Ignore unknown preprocessor directives which are inside an inactive
...
conditional (github issue #394 , reported by Dan Wilcox).
Regression introduced in 3.0.3.
2015-04-30 13:40:42 +12:00
Vadim Zeitlin
6988b00aba
Fix handling of default arguments after ignored ones in Python.
...
Don't skip checking subsequent arguments just because one of them has "in"
typemap with numinputs=0 attribute.
Add a unit test showing the problem which is relatively rare as it doesn't
happen for the class methods and is hidden unless autodoc feature is used for
the global functions.
Closes #377 .
2015-04-27 23:17:14 +02:00
William S Fulton
d64c241e1c
gcc-5.1 warning fixes
2015-04-26 01:18:26 +01:00
William S Fulton
416277b3a5
Python code generated with '-builtin -modernargs' segfaults for any method taking zero arguments.
...
Also fixes: "SystemError: error return without exception set" during error checking
when using just -builtin and the incorrect number of arguments is passed to a class
method expecting zero arguments.
Closes #256
Closes #382
2015-04-24 21:08:17 +01:00
William S Fulton
e4d02d20ad
Warning fix for VC++
2015-04-23 19:21:59 +01:00
Vadim Zeitlin
5569d91bd0
Fix handling of "default" typemap in Python.
...
Use "compact" arguments form for the function if "default" typemap is defined
for any of its arguments to allow omitting this argument when calling it from
Python.
Closes #377 .
2015-04-23 15:11:05 +02:00
Vadim Zeitlin
2369e2c500
No changes, just added an explanatory comment to Python module.
...
Explain a bit better when and why do we decide to use "*args" in the generated
Python code.
2015-04-23 15:11:02 +02:00
Vadim Zeitlin
0eae8a8efa
Fix handling of NULL default argument values for pointer types.
...
Accept not only manifest pointer types (such as e.g. "void *") but also types
that are typedefs for pointer types when checking whether C++ value of 0 must
be represented as 0 or None in Python.
Closes #365 , #376 .
2015-04-23 15:11:02 +02:00