Sha256: c0f62b46f7f4a306b8bd07fad28f86eb2f82d8be8d37b2a66b8c0df57d0065e1

Contents?: true

Size: 1.81 KB

Versions: 12

Compression:

Stored size: 1.81 KB

Contents

//////////////////////////////////////////////////////////////////////////////
//
// (C) Copyright Ion Gaztanaga 2014-2014. 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/interprocess for documentation.
//
//////////////////////////////////////////////////////////////////////////////

#ifndef BOOST_MOVE_DETAIL_WORKAROUND_HPP
#define BOOST_MOVE_DETAIL_WORKAROUND_HPP

#ifndef BOOST_CONFIG_HPP
#  include <boost/config.hpp>
#endif
#
#if defined(BOOST_HAS_PRAGMA_ONCE)
#  pragma once
#endif

#if    !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) && !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
   #define BOOST_MOVE_PERFECT_FORWARDING
#endif

#if defined(__has_feature)
   #define BOOST_MOVE_HAS_FEATURE __has_feature
#else
   #define BOOST_MOVE_HAS_FEATURE(x) 0
#endif

#if BOOST_MOVE_HAS_FEATURE(address_sanitizer) || defined(__SANITIZE_ADDRESS__)
   #define BOOST_MOVE_ADDRESS_SANITIZER_ON
#endif

//Macros for documentation purposes. For code, expands to the argument
#define BOOST_MOVE_IMPDEF(TYPE) TYPE
#define BOOST_MOVE_SEEDOC(TYPE) TYPE
#define BOOST_MOVE_DOC0PTR(TYPE) TYPE
#define BOOST_MOVE_DOC1ST(TYPE1, TYPE2) TYPE2
#define BOOST_MOVE_I ,
#define BOOST_MOVE_DOCIGN(T1) T1

#if defined(__GNUC__) && (__GNUC__ == 4) && (__GNUC_MINOR__ < 5) && !defined(__clang__)
   //Pre-standard rvalue binding rules
   #define BOOST_MOVE_OLD_RVALUE_REF_BINDING_RULES
#elif defined(_MSC_VER) && (_MSC_VER == 1600)
   //Standard rvalue binding rules but with some bugs
   #define BOOST_MOVE_MSVC_10_MEMBER_RVALUE_REF_BUG
   #define BOOST_MOVE_MSVC_AUTO_MOVE_RETURN_BUG
#elif defined(_MSC_VER) && (_MSC_VER == 1700)
   #define BOOST_MOVE_MSVC_AUTO_MOVE_RETURN_BUG
#endif

#endif   //#ifndef BOOST_MOVE_DETAIL_WORKAROUND_HPP

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
passenger-5.1.4 src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp
passenger-5.1.3 src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp
passenger-5.1.2 src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp
passenger-5.1.1 src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp
passenger-5.1.0 src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp
passenger-5.0.30 src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp
passenger-5.0.29 src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/passenger-5.0.28/src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp
passenger-5.0.28 src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp
passenger-5.0.27 src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp
passenger-5.0.26 src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp
passenger-5.0.25 src/cxx_supportlib/vendor-modified/boost/move/detail/workaround.hpp