From: Roman <rom...@us...> - 2006-04-23 12:13:47
|
Update of /cvsroot/pygccxml/source/pygccxml/unittests/data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31240/pygccxml/unittests/data Modified Files: core_cache.hpp patcher.hpp Log Message: 1. porting some tests to use new "select" interface 2. adding new type traits: has_public_assign 3. adding new patcher to treat GCC-XML default value typedef bug Index: core_cache.hpp =================================================================== RCS file: /cvsroot/pygccxml/source/pygccxml/unittests/data/core_cache.hpp,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** core_cache.hpp 20 Apr 2006 10:11:26 -0000 1.55 --- core_cache.hpp 23 Apr 2006 12:13:25 -0000 1.56 *************** *** 22,26 **** #endif//__core_cache_hpp__ ! ! ! //touch//touch \ No newline at end of file --- 22,24 ---- #endif//__core_cache_hpp__ ! \ No newline at end of file Index: patcher.hpp =================================================================== RCS file: /cvsroot/pygccxml/source/pygccxml/unittests/data/patcher.hpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** patcher.hpp 9 Feb 2006 11:33:56 -0000 1.4 --- patcher.hpp 23 Apr 2006 12:13:25 -0000 1.5 *************** *** 34,37 **** --- 34,50 ---- + namespace typedef_{ + + struct original_name{ + original_name(){} + }; + + typedef original_name alias; + + } + + void typedef__func( const typedef_::alias& position = typedef_::alias() ); + + /*struct default_arg_t{};*/ /*default_arg_t create_default_argument();*/ |