From 51deacfe77adcc2f466487992af897f723a8e7c8 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Mon, 12 Dec 2016 07:22:55 +0300 Subject: [PATCH] Using internal boost library [#METR-2944]. --- .../boost_1_62_0/boost/aligned_storage.hpp | 18 ++++++++++++++++++ .../boost_1_62_0/boost/make_shared.hpp | 17 +++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 contrib/libboost/boost_1_62_0/boost/aligned_storage.hpp create mode 100644 contrib/libboost/boost_1_62_0/boost/make_shared.hpp diff --git a/contrib/libboost/boost_1_62_0/boost/aligned_storage.hpp b/contrib/libboost/boost_1_62_0/boost/aligned_storage.hpp new file mode 100644 index 00000000000..f400fa9e753 --- /dev/null +++ b/contrib/libboost/boost_1_62_0/boost/aligned_storage.hpp @@ -0,0 +1,18 @@ +//----------------------------------------------------------------------------- +// boost aligned_storage.hpp header file +// See http://www.boost.org for updates, documentation, and revision history. +//----------------------------------------------------------------------------- +// +// Copyright (c) 2002-2003 +// Eric Friedman, Itay Maman +// +// 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) + +#ifndef BOOST_ALIGNED_STORAGE_HPP +#define BOOST_ALIGNED_STORAGE_HPP + +#include + +#endif // BOOST_ALIGNED_STORAGE_HPP diff --git a/contrib/libboost/boost_1_62_0/boost/make_shared.hpp b/contrib/libboost/boost_1_62_0/boost/make_shared.hpp new file mode 100644 index 00000000000..c04938f9b35 --- /dev/null +++ b/contrib/libboost/boost_1_62_0/boost/make_shared.hpp @@ -0,0 +1,17 @@ +#ifndef BOOST_MAKE_SHARED_HPP_INCLUDED +#define BOOST_MAKE_SHARED_HPP_INCLUDED + +// make_shared.hpp +// +// Copyright (c) 2007, 2008 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/make_shared.html +// for documentation. + +#include + +#endif // #ifndef BOOST_MAKE_SHARED_HPP_INCLUDED