swig/Source/CParse
William S Fulton b9350614b5 Fix typemap matching to expand template parameters when the name contains template parameters.
In the %typemap below the type is T and the name is X<T>::make
which now expands correctly to X< int >::make

template<typename T> struct X {
  %typemap(out) T X<T>::make "..."
  T make();
};

%template(Xint) X<int>;
2019-02-17 21:38:48 +00:00
..
cparse.h new_node refactor 2018-05-19 09:00:06 +01:00
cscanner.c Code formatting fixes in doxygen code 2018-05-25 07:56:39 +01:00
parser.y Fix parser error containing multiple #define statements inside an enum. 2019-02-16 08:09:56 +00:00
templ.c Fix typemap matching to expand template parameters when the name contains template parameters. 2019-02-17 21:38:48 +00:00
util.c new_node refactor 2018-05-19 09:00:06 +01:00