OSDN Git Service

2012-07-06 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / include / std / thread
index 1d17337..f6b19ab 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));
       }
   };