summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused cvsignore targetmatlabWilliam S Fulton2017-02-141-6/+0
|
* run make beautify-file on matlab.cxxWilliam S Fulton2017-02-141-728/+737
|
* Remove unnecessary codeWilliam S Fulton2017-02-141-4/+4
|
* Tidy up matlab options displayWilliam S Fulton2017-02-141-3/+3
|
* Merge matlab .ignore file into the one and only .gitignore fileWilliam S Fulton2017-02-132-9/+4
|
* alphabetical order fixWilliam S Fulton2017-02-131-2/+3
|
* Fix incorrect whitespace changeWilliam S Fulton2017-02-131-1/+1
|
* Merge pull request #78 from Alzathar/matlab-nargxcheck-r2008-workaroundJoel Andersson2016-11-131-3/+9
|\ | | | | The function ‘nargincheck’ does not exist under Matlab R2008b and the…
| * The function ‘nargincheck’ does not exist under Matlab R2008b and the ↵Arnaud Barré2016-11-111-3/+9
|/ | | | function ‘nargoutchk’ requires 3 arguments.
* Merge pull request #77 from Alzathar/matlab-unused-parameterJoel Andersson2016-11-092-5/+11
|\ | | | | Matlab unused parameter
| * Same warnings than before but the fix needs to modify the Matlab language ↵Arnaud Barré2016-11-071-3/+9
| | | | | | | | module. Some part of this fix comment variable name. But in some case, unsued variable is set dynamically and silenced using the (void) prefix.
| * Clang warnings about unused parameters.Arnaud Barré2016-11-071-2/+2
| |
* | Merge pull request #76 from Alzathar/matlab-empty-stringJoel Andersson2016-11-091-1/+1
|\ \ | |/ |/| The Matlab empty string ('') is not recognized as a valid string.
| * The Matlab empty string ('') is not recognized as a valid string.Arnaud Barré2016-11-071-1/+1
|/
* Merge pull request #74 from traversaro/patch-2Joel Andersson2016-08-291-0/+2
|\ | | | | Fix use of invalid iterator
| * Fix use of invalid iteratorSilvio Traversaro2016-08-281-0/+2
|/ | | | | | This problem is reported by running cppcheck on the generated C++, and originated in the python module, see https://sourceforge.net/p/swig/bugs/1347/ . Unfortunately it propagated through copy pasting to several other modules. The fix used here is directly extracted from the code used in the Python module, see https://github.com/swig/swig/blob/2740812970382202fe97e52f7c881eaa71c2e7c0/Lib/python/pycontainer.swg#L329 .
* Merge pull request #73 from mwoehlke-kitware/fix-uninitialized-pointerJoel Andersson2016-08-091-1/+1
|\ | | | | Fix maybe-uninitialized pointer
| * Fix maybe-uninitialized pointerMatthew Woehlke2016-08-091-1/+1
|/ | | | | | | Explicitly initialize the SwigPtr in SWIG_Matlab_NewPointerObj to null. This fixes a -wmaybe-uninitialized warning, because the pointer may or may not be initialized by SWIG_Matlab_NewPointer, and is used later in the function.
* By default, do not allow saving of SwigRefJoris Gillis; u00523732016-08-031-0/+3
| | | | Saving and loading a SwigRef may easily lead to program termination
* MATLAB directors; fix for void functionsJoris Gillis; u00523732016-08-021-7/+17
|
* Issue #71 Remove default disp implementationJoel Andersson2016-07-121-3/+0
|
* Issue #51: Removed subsref, subsasgn from SwigRef.mJoel Andersson2016-07-125-38/+10
| | | | The current solution is so hacky that it's better for users to add it themselves using %matlabcode
* Removed debug code in MATLAB moduleJoel Andersson2016-07-081-97/+1
|
* Cleaned up indentation, matlab.cxxJoel Andersson2016-07-081-443/+443
|
* Issue #67 'end' must sometimes be overloadedJoel Andersson2016-07-081-1/+1
|
* Issue #67 Made build system MATLAB/Octave bilingualJoel Andersson2016-07-063-65/+116
|
* Issue #67 Buildsystem cleanupJoel Andersson2016-07-052-14/+18
|
* Issue #67 Added list of MATLAB keywordsJoel Andersson2016-07-052-1/+49
|
* Issue #67 Added missing dependency on limits.hJoel Andersson2016-07-051-4/+2
|
* Issue #67 nested_structs.iJoel Andersson2016-07-051-2/+6
|
* Issue #67 Fixed preproc.iJoel Andersson2016-07-052-23/+30
|
* Issue #67 Fixed enums.iJoel Andersson2016-07-052-14/+19
|
* Issue #67 Fixed rename_scope_runme.mJoel Andersson2016-07-051-2/+1
|
* Issue #67 Fixed case insensitive conflict in testJoel Andersson2016-07-052-1/+6
|
* Issue #67 Replaced bool with intJoel Andersson2016-07-051-5/+5
|
* Issue #67 Tried to resolve Octave mex.h failureJoel Andersson2016-07-051-4/+11
|
* Merge branch 'master' of https://github.com/swig/swig into matlabJoel Andersson2016-07-02227-1624/+9094
|\
| * changes file entry for ignoring nested classesWilliam S Fulton2016-06-261-0/+3
| |
| * Merge branch 'wkalinin-nested-ignore-fix'William S Fulton2016-06-264-6/+39
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * wkalinin-nested-ignore-fix: renamed test module, in accordance with other tests function body fixed added foo() definition to satisfy some test linking fails func() renamed to foo() for 'go' fixed test-suite/nested_ignore.i test for #662 fix for nested ignored types Closes #662
| | * renamed test module, in accordance with other testsVladimir Kalinin2016-06-081-1/+1
| | |
| | * function body fixedVladimir Kalinin2016-05-291-1/+1
| | |
| | * added foo() definition to satisfy some test linking failsVladimir Kalinin2016-05-281-1/+1
| | |
| | * func() renamed to foo() for 'go'Vladimir Kalinin2016-05-281-1/+1
| | |
| | * fixed test-suite/nested_ignore.iVladimir Kalinin2016-05-281-1/+4
| | |
| | * test for #662Vladimir Kalinin2016-05-242-0/+22
| | |
| | * fix for nested ignored typesVladimir Kalinin2016-05-182-6/+14
| | |
| * | Merge branch 'avalluri-leaks'William S Fulton2016-06-269-6/+36
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * avalluri-leaks: whitespace fix memory leak improvements - delete at end of scope CCache: Fix typo in null check CCache: Fix memory/file descriptor leaks scilab.cxx: Fix memory leaks Fix leaked file descriptor Lua: Fix possible memory leaks go.cxx: Fix use of a freed variable Closes #710 Closes #712 Closes #713 Closes #715 Closes #716
| | * | whitespace fixWilliam S Fulton2016-06-261-1/+1
| | | |
| | * | memory leak improvements - delete at end of scopeWilliam S Fulton2016-06-261-2/+3
| | | |
| | * | CCache: Fix typo in null checkAmarnath Valluri2016-06-171-1/+1
| | | |