Revision: 932
http://svn.sourceforge.net/pygccxml/?rev=932&view=rev
Author: roman_yakovenko
Date: 2007-02-25 04:31:52 -0800 (Sun, 25 Feb 2007)
Log Message:
-----------
fixing bug, which will prevent creation of __call_policies.hpp file
Modified Paths:
--------------
pyplusplus_dev/pyplusplus/module_creator/creator.py
Modified: pyplusplus_dev/pyplusplus/module_creator/creator.py
===================================================================
--- pyplusplus_dev/pyplusplus/module_creator/creator.py 2007-02-25 11:08:58 UTC (rev 931)
+++ pyplusplus_dev/pyplusplus/module_creator/creator.py 2007-02-25 12:31:52 UTC (rev 932)
@@ -349,7 +349,10 @@
def __on_demand_include_call_policies( self, call_policy ):
if self.__custom_call_policies_included:
return
-
+
+ if not call_policy:
+ return
+
if call_policy.is_predefined():
return
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|