Revision: 923
http://svn.sourceforge.net/pygccxml/?rev=923&view=rev
Author: roman_yakovenko
Date: 2007-02-24 10:39:53 -0800 (Sat, 24 Feb 2007)
Log Message:
-----------
adding possible patch to is_noncopyable type traits
Modified Paths:
--------------
pygccxml_dev/pygccxml/declarations/type_traits.py
Modified: pygccxml_dev/pygccxml/declarations/type_traits.py
===================================================================
--- pygccxml_dev/pygccxml/declarations/type_traits.py 2007-02-24 18:37:52 UTC (rev 922)
+++ pygccxml_dev/pygccxml/declarations/type_traits.py 2007-02-24 18:39:53 UTC (rev 923)
@@ -802,6 +802,8 @@
"""implementation details"""
#It is not enough to check base classes, we should also to check
#member variables.
+ #if is_std_string( class_ ) or is_std_wstring( class_ ):
+ # return False
mvars = filter( lambda x: isinstance( x, variable.variable_t )
, class_.declarations )
for mvar in mvars:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|