From d2c3b09e72379203be3f229a37fe7c55f0235778 Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Mon, 1 Dec 2014 20:12:11 +0000 Subject: [PATCH] bundle boost/weak_ptr.hpp --- boost.sh | 4 ++-- miniboost/boost/weak_ptr.hpp | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 miniboost/boost/weak_ptr.hpp diff --git a/boost.sh b/boost.sh index f9a86e9f..8d6b36fa 100755 --- a/boost.sh +++ b/boost.sh @@ -19,5 +19,5 @@ mkdir -vp miniboost/ bcp --boost="$boost" boost/shared_array.hpp boost/concept_check.hpp \ boost/scoped_ptr.hpp boost/circular_buffer.hpp boost/scoped_array.hpp \ - boost/shared_ptr.hpp boost/enable_shared_from_this.hpp boost/bind \ - miniboost/ \ No newline at end of file + boost/shared_ptr.hpp boost/enable_shared_from_this.hpp boost/weak_ptr.hpp \ + boost/bind miniboost/ \ No newline at end of file diff --git a/miniboost/boost/weak_ptr.hpp b/miniboost/boost/weak_ptr.hpp new file mode 100644 index 00000000..dd268690 --- /dev/null +++ b/miniboost/boost/weak_ptr.hpp @@ -0,0 +1,18 @@ +#ifndef BOOST_WEAK_PTR_HPP_INCLUDED +#define BOOST_WEAK_PTR_HPP_INCLUDED + +// +// weak_ptr.hpp +// +// Copyright (c) 2001, 2002, 2003 Peter Dimov +// +// Distributed under the Boost Software License, Version 1.0. +// See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt +// +// See http://www.boost.org/libs/smart_ptr/weak_ptr.htm for documentation. +// + +#include + +#endif // #ifndef BOOST_WEAK_PTR_HPP_INCLUDED