Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:53:36

0001 /////////////////////////////////////////////////////////////////////////////
0002 //
0003 // (C) Copyright Ion Gaztanaga  2014-2015
0004 //
0005 // Distributed under the Boost Software License, Version 1.0.
0006 //    (See accompanying file LICENSE_1_0.txt or copy at
0007 //          http://www.boost.org/LICENSE_1_0.txt)
0008 //
0009 // See http://www.boost.org/libs/intrusive for documentation.
0010 //
0011 /////////////////////////////////////////////////////////////////////////////
0012 #ifndef BOOST_INTRUSIVE_DETAIL_MINIMAL_PAIR_HEADER_HPP
0013 #define BOOST_INTRUSIVE_DETAIL_MINIMAL_PAIR_HEADER_HPP
0014 #
0015 #if defined(BOOST_HAS_PRAGMA_ONCE)
0016 #  pragma once
0017 #endif
0018 #
0019 #ifndef BOOST_CONFIG_HPP
0020 #  include <boost/config.hpp>
0021 #endif
0022 #
0023 #//Try to avoid including <utility>, as it's quite big in C++11
0024 #if defined(BOOST_GNU_STDLIB)
0025 #  include <bits/stl_pair.h>
0026 #else
0027 #  include <utility>    //Fallback
0028 #endif
0029 #
0030 #endif //BOOST_INTRUSIVE_DETAIL_MINIMAL_PAIR_HEADER_HPP