]> rtime.felk.cvut.cz Git - l4.git/blobdiff - l4/pkg/libstdc++-v3/contrib/libstdc++-v3-4.7/include/std/thread
update
[l4.git] / l4 / pkg / libstdc++-v3 / contrib / libstdc++-v3-4.7 / include / std / thread
index 1d1733731bf46c9363ed158e047febfd18eb9697..f6b19ab632d41f9fc3e3d1b7e51032ac48f1bb7e 100644 (file)
@@ -1,6 +1,6 @@
 // <thread> -*- C++ -*-
 
-// Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
+// Copyright (C) 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
@@ -188,7 +188,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
       _M_make_routine(_Callable&& __f)
       {
        // Create and allocate full data structure, not base.
-       return make_shared<_Impl<_Callable>>(std::forward<_Callable>(__f));
+       return std::make_shared<_Impl<_Callable>>(std::forward<_Callable>(__f));
       }
   };