[Assorted-commits] SF.net SVN: assorted:[1340] sandbox/trunk/src/cc/tbbmove.cc
Brought to you by:
yangzhang
From: <yan...@us...> - 2009-04-16 20:25:33
|
Revision: 1340 http://assorted.svn.sourceforge.net/assorted/?rev=1340&view=rev Author: yangzhang Date: 2009-04-16 20:25:22 +0000 (Thu, 16 Apr 2009) Log Message: ----------- added demo of tbb incompat with c++0x move Added Paths: ----------- sandbox/trunk/src/cc/tbbmove.cc Added: sandbox/trunk/src/cc/tbbmove.cc =================================================================== --- sandbox/trunk/src/cc/tbbmove.cc (rev 0) +++ sandbox/trunk/src/cc/tbbmove.cc 2009-04-16 20:25:22 UTC (rev 1340) @@ -0,0 +1,9 @@ +#include <tbb/concurrent_queue.h> +#include <commons/unique_ptr.h> +using namespace std; +using namespace tbb; +int main() { + concurrent_queue<unique_ptr<int> > q; + return 0; +} + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |