swig/Source
William S Fulton bd2de6fc06 Fix deduction of partially specialized template parameters
when the specialized parameter is non-trivial, used in a wrapped method
and the type to %template uses typedefs. For example:

  typedef double & DoubleRef;
  template <typename T> struct XX {};
  template <typename T> struct XX<T &> { void fn(T t) {} };
  %template(XXD) XX<DoubleRef>;

The type of the parameter in the instantiated template for fn is now correctly deduced
as double.
2023-02-17 08:23:41 +00:00
..
CParse Fix deduction of partially specialized template parameters 2023-02-17 08:23:41 +00:00
DOH Use https for swig.org links 2022-10-06 13:16:39 +13:00
Doxygen Use https for swig.org links 2022-10-06 13:16:39 +13:00
Include Support multiple arguments in variadic templates. 2022-12-22 21:23:39 +00:00
Modules Avoid unused parameter self warning 2023-01-27 11:17:30 +13:00
Preprocessor Consolidate name mangling functions 2022-11-12 09:18:19 +00:00
Swig Fix seg fault using %template 2023-01-03 23:53:34 +00:00
Makefile.am Remove -browse command line option 2022-04-03 08:56:07 +12:00
README Remove details of long-removed directories 2021-05-16 08:42:39 +12:00

SWIG Source directory

 Source/DOH          -  A core set of basic datatypes including
                        strings, lists, hashes, and files.  Used
                        extensively by the rest of SWIG.

 Source/Swig         -  Swig core. Type-system, utility functions.

 Source/Preprocessor -  SWIG C Preprocessor

 Source/CParse       -  SWIG C Parser (still messy)

 Source/Modules      -  Language modules.

 Source/Include      -  Include files.