[Assorted-commits] SF.net SVN: assorted:[1344] cpp-commons/trunk/src/commons/delegates.h
Brought to you by:
yangzhang
From: <yan...@us...> - 2009-04-29 02:06:33
|
Revision: 1344 http://assorted.svn.sourceforge.net/assorted/?rev=1344&view=rev Author: yangzhang Date: 2009-04-29 02:06:23 +0000 (Wed, 29 Apr 2009) Log Message: ----------- using boost::function instead of std::function Modified Paths: -------------- cpp-commons/trunk/src/commons/delegates.h Modified: cpp-commons/trunk/src/commons/delegates.h =================================================================== --- cpp-commons/trunk/src/commons/delegates.h 2009-04-27 21:23:05 UTC (rev 1343) +++ cpp-commons/trunk/src/commons/delegates.h 2009-04-29 02:06:23 UTC (rev 1344) @@ -12,7 +12,7 @@ using namespace boost; using namespace std; - typedef std::function<void()> fn; + typedef boost::function<void()> fn; UNUSED static void swallow(const fn f) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |