From: Roman <rom...@us...> - 2006-03-30 08:09:47
|
Update of /cvsroot/pygccxml/source/pyplusplus/unittests/data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14922/pyplusplus/unittests/data Modified Files: call_policies_to_be_exported.hpp Log Message: fixing 2 bugs: templates parser now correctly reports about is_instantiation improving default call policies for operator[] Index: call_policies_to_be_exported.hpp =================================================================== RCS file: /cvsroot/pygccxml/source/pyplusplus/unittests/data/call_policies_to_be_exported.hpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** call_policies_to_be_exported.hpp 14 Feb 2006 11:07:53 -0000 1.8 --- call_policies_to_be_exported.hpp 30 Mar 2006 08:09:43 -0000 1.9 *************** *** 32,35 **** --- 32,39 ---- { return x; } + struct container{ + int operator[]( int i ) const { return i; } + }; + } |