|
From: stephan b. <sg...@us...> - 2004-12-23 22:13:17
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22049 Modified Files: Phoenix.h Log Message: Renamed an internal helper type to use P's naming conventions. Index: Phoenix.h =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/Phoenix.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Phoenix.h 23 Dec 2004 20:11:49 -0000 1.2 +++ Phoenix.h 23 Dec 2004 22:13:06 -0000 1.3 @@ -41,9 +41,9 @@ See the Phoenix<> class. */ - struct no_op_phoenix_initializer + struct DefaultPhoenixInitializer { - /** Does nothing: This class is called no_op for a reason ;) */ + /** Does nothing. */ template <typename T> void operator()( T & ) throw() { return; } }; @@ -122,7 +122,7 @@ template < typename BaseType, typename ContextType = BaseType, - typename InitializerType = no_op_phoenix_initializer + typename InitializerType = DefaultPhoenixInitializer > struct Phoenix : public BaseType { |