diff options
| author | Remko Tronçon <git@el-tramo.be> | 2012-12-23 13:16:26 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2012-12-23 14:43:26 (GMT) | 
| commit | 491ddd570a752cf9bda85933bed0c6942e39b1f9 (patch) | |
| tree | 10c25c1be8cc08d0497df1dccd56a10fbb30beee /3rdParty/Boost/src/boost/filesystem/v3/convenience.hpp | |
| parent | da7d7a0ca71b80281aa9ff2526290b61ccb0cc60 (diff) | |
| download | swift-contrib-491ddd570a752cf9bda85933bed0c6942e39b1f9.zip swift-contrib-491ddd570a752cf9bda85933bed0c6942e39b1f9.tar.bz2 | |
Update Boost to 1.52.0.
Change-Id: I1e56bea2600bf2ed9c5b3aba8c4f9d2a0f350e77
Diffstat (limited to '3rdParty/Boost/src/boost/filesystem/v3/convenience.hpp')
| -rw-r--r-- | 3rdParty/Boost/src/boost/filesystem/v3/convenience.hpp | 74 | 
1 files changed, 0 insertions, 74 deletions
| diff --git a/3rdParty/Boost/src/boost/filesystem/v3/convenience.hpp b/3rdParty/Boost/src/boost/filesystem/v3/convenience.hpp deleted file mode 100644 index 1a1f943..0000000 --- a/3rdParty/Boost/src/boost/filesystem/v3/convenience.hpp +++ /dev/null @@ -1,74 +0,0 @@ -//  boost/filesystem/convenience.hpp  ----------------------------------------// - -//  Copyright Beman Dawes, 2002-2005 -//  Copyright Vladimir Prus, 2002 -//  Use, modification, and distribution is subject to 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 library home page at http://www.boost.org/libs/filesystem - -//----------------------------------------------------------------------------//  - -#ifndef BOOST_FILESYSTEM3_CONVENIENCE_HPP -#define BOOST_FILESYSTEM3_CONVENIENCE_HPP - -#include <boost/config.hpp> - -# if defined( BOOST_NO_STD_WSTRING ) -#   error Configuration not supported: Boost.Filesystem V3 and later requires std::wstring support -# endif - -#include <boost/filesystem/v3/operations.hpp> -#include <boost/system/error_code.hpp> - -#include <boost/config/abi_prefix.hpp> // must be the last #include - -namespace boost -{ -  namespace filesystem3 -  { - -# ifndef BOOST_FILESYSTEM_NO_DEPRECATED - -    inline std::string extension(const path & p) -    { -      return p.extension().string(); -    } - -    inline std::string basename(const path & p) -    { -      return p.stem().string(); -    } - -    inline path change_extension( const path & p, const path & new_extension ) -    {  -      path new_p( p ); -      new_p.replace_extension( new_extension ); -      return new_p; -    } - -# endif - - -  } // namespace filesystem3 -} // namespace boost - -//----------------------------------------------------------------------------// - -namespace boost -{ -  namespace filesystem -  { -# ifndef BOOST_FILESYSTEM_NO_DEPRECATED -    using filesystem3::extension; -    using filesystem3::basename; -    using filesystem3::change_extension; -# endif -  } -} - -//----------------------------------------------------------------------------// - -#include <boost/config/abi_suffix.hpp> // pops abi_prefix.hpp pragmas -#endif // BOOST_FILESYSTEM3_CONVENIENCE_HPP | 
 Swift
 Swift