Sha256: e4077517eb4b2ff4cc7509155a349cd83a6a638d00c7917cb6f43079cbca8a33

Contents?: true

Size: 568 Bytes

Versions: 9

Compression:

Stored size: 568 Bytes

Contents

#ifndef BOOST_SYSTEM_DETAIL_IS_SAME_HPP_INCLUDED
#define BOOST_SYSTEM_DETAIL_IS_SAME_HPP_INCLUDED

// Copyright 2021 Peter Dimov
// Distributed under the Boost Software License, Version 1.0
// http://www.boost.org/LICENSE_1_0.txt

namespace boost
{

namespace system
{

namespace detail
{

template<class T1, class T2> struct is_same
{
    enum _vt { value = 0 };
};

template<class T> struct is_same<T, T>
{
    enum _vt { value = 1 };
};

} // namespace detail

} // namespace system

} // namespace boost

#endif // #ifndef BOOST_SYSTEM_DETAIL_IS_SAME_HPP_INCLUDED

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
passenger-6.0.20 src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp
passenger-6.0.19 src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp
passenger-6.0.18 src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp
passenger-6.0.17 src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp
passenger-6.0.16 src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp
passenger-6.0.15 src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp
passenger-6.0.14 src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp
passenger-6.0.13 src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp
passenger-6.0.12 src/cxx_supportlib/vendor-modified/boost/system/detail/is_same.hpp