Revision: 192
Author: roman_yakovenko
Date: 2006-05-31 13:32:46 -0700 (Wed, 31 May 2006)
ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=192&view=rev
Log Message:
-----------
fixing bug
Modified Paths:
--------------
pygccxml_dev/pygccxml/declarations/filters.py
Modified: pygccxml_dev/pygccxml/declarations/filters.py
===================================================================
--- pygccxml_dev/pygccxml/declarations/filters.py 2006-05-31 07:41:23 UTC (rev 191)
+++ pygccxml_dev/pygccxml/declarations/filters.py 2006-05-31 20:32:46 UTC (rev 192)
@@ -353,6 +353,8 @@
def __compare_types( self, type_or_str, type ):
assert type_or_str
+ if type is None:
+ return False
if isinstance( type_or_str, cpptypes.type_t ):
if type_or_str != type:
return False
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|