Sha256: 107ab40cec1e8d185cc7b94dafe2e4102a1498ec57672633a792d60fd4e84d53

Contents?: true

Size: 1.67 KB

Versions: 58

Compression:

Stored size: 1.67 KB

Contents

// Copyright (C) 2012 Vicente J. Botet Escriba
//
//  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_THREAD_DETAIL_DELETE_HPP
#define BOOST_THREAD_DETAIL_DELETE_HPP

#include <boost/config.hpp>

/**
 * BOOST_THREAD_DELETE_COPY_CTOR deletes the copy constructor when the compiler supports it or
 * makes it private.
 *
 * BOOST_THREAD_DELETE_COPY_ASSIGN deletes the copy assignment when the compiler supports it or
 * makes it private.
 */

#if ! defined BOOST_NO_CXX11_DELETED_FUNCTIONS && ! defined BOOST_NO_CXX11_RVALUE_REFERENCES
#define BOOST_THREAD_DELETE_COPY_CTOR(CLASS) \
      CLASS(CLASS const&) = delete; \

#define BOOST_THREAD_DELETE_COPY_ASSIGN(CLASS) \
      CLASS& operator=(CLASS const&) = delete;

#else // BOOST_NO_CXX11_DELETED_FUNCTIONS
#if defined(BOOST_MSVC) && _MSC_VER >= 1600
#define BOOST_THREAD_DELETE_COPY_CTOR(CLASS) \
    private: \
      CLASS(CLASS const&); \
    public:

#define BOOST_THREAD_DELETE_COPY_ASSIGN(CLASS) \
    private: \
      CLASS& operator=(CLASS const&); \
    public:
#else
#define BOOST_THREAD_DELETE_COPY_CTOR(CLASS) \
    private: \
      CLASS(CLASS&); \
    public:

#define BOOST_THREAD_DELETE_COPY_ASSIGN(CLASS) \
    private: \
      CLASS& operator=(CLASS&); \
    public:
#endif
#endif // BOOST_NO_CXX11_DELETED_FUNCTIONS

/**
 * BOOST_THREAD_NO_COPYABLE deletes the copy constructor and assignment when the compiler supports it or
 * makes them private.
 */
#define BOOST_THREAD_NO_COPYABLE(CLASS) \
    BOOST_THREAD_DELETE_COPY_CTOR(CLASS) \
    BOOST_THREAD_DELETE_COPY_ASSIGN(CLASS)

#endif // BOOST_THREAD_DETAIL_DELETE_HPP

Version data entries

58 entries across 58 versions & 3 rubygems

Version Path
passenger-6.0.26 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.25 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.24 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.23 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.20 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.19 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.18 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.17 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.16 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.15 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.14 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.13 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.12 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.11 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.10 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.9 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.8 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.7 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.6 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp
passenger-6.0.5 src/cxx_supportlib/vendor-modified/boost/thread/detail/delete.hpp