/
usr
/
include
/
boost
/
icl
/
/usr/include/boost/icl
mkdir
upload
Name
Size
Mode
Actions
concept/
-
0755
rm
detail/
-
0755
rm
predicates/
-
0755
rm
type_traits/
-
0755
rm
associative_element_container.hpp
862
0644
edit
dl
rm
associative_interval_container.hpp
997
0644
edit
dl
rm
closed_interval.hpp
4252
0644
edit
dl
rm
continuous_interval.hpp
7148
0644
edit
dl
rm
discrete_interval.hpp
6991
0644
edit
dl
rm
dynamic_interval_traits.hpp
1306
0644
edit
dl
rm
functors.hpp
16489
0644
edit
dl
rm
gregorian.hpp
4225
0644
edit
dl
rm
impl_config.hpp
3119
0644
edit
dl
rm
interval.hpp
5983
0644
edit
dl
rm
interval_base_map.hpp
56699
0644
edit
dl
rm
interval_base_set.hpp
22501
0644
edit
dl
rm
interval_bounds.hpp
2893
0644
edit
dl
rm
interval_combining_style.hpp
945
0644
edit
dl
rm
interval_map.hpp
11872
0644
edit
dl
rm
interval_set.hpp
8124
0644
edit
dl
rm
interval_traits.hpp
1900
0644
edit
dl
rm
iterator.hpp
3742
0644
edit
dl
rm
left_open_interval.hpp
4505
0644
edit
dl
rm
map.hpp
26282
0644
edit
dl
rm
open_interval.hpp
4442
0644
edit
dl
rm
ptime.hpp
4317
0644
edit
dl
rm
rational.hpp
2219
0644
edit
dl
rm
right_open_interval.hpp
4422
0644
edit
dl
rm
separate_interval_set.hpp
7928
0644
edit
dl
rm
set.hpp
873
0644
edit
dl
rm
split_interval_map.hpp
10593
0644
edit
dl
rm
split_interval_set.hpp
8616
0644
edit
dl
rm
Edit:
/usr/include/boost/icl/impl_config.hpp
(3119B)
/*-----------------------------------------------------------------------------+ Author: Joachim Faulhaber Copyright (c) 2009-2011: Joachim Faulhaber +------------------------------------------------------------------------------+ Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENCE.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +-----------------------------------------------------------------------------*/ #ifndef BOOST_ICL_IMPL_CONFIG_HPP_JOFA_091225 #define BOOST_ICL_IMPL_CONFIG_HPP_JOFA_091225 #include <boost/icl/detail/boost_config.hpp> /*-----------------------------------------------------------------------------+ | You can choose an implementation for the basic set and map classes. | | Select at most ONE of the following defines to change the default | +-----------------------------------------------------------------------------*/ //#define ICL_USE_STD_IMPLEMENTATION // Default //#define ICL_USE_BOOST_MOVE_IMPLEMENTATION // Boost.Container // ICL_USE_BOOST_INTERPROCESS_IMPLEMENTATION // No longer available /*-----------------------------------------------------------------------------+ | NO define or ICL_USE_STD_IMPLEMENTATION: Choose std::set and std::map from | | your local std implementation as implementing containers (DEFAULT). | | Whether move semantics is available depends on the version of your local | | STL. | | | | ICL_USE_BOOST_MOVE_IMPLEMENTATION: | | Use move aware containers from boost::container. | | | | NOTE: ICL_USE_BOOST_INTERPROCESS_IMPLEMENTATION: This define has been | | available until boost version 1.48.0 and is no longer supported. | +-----------------------------------------------------------------------------*/ #if defined(ICL_USE_BOOST_MOVE_IMPLEMENTATION) # define ICL_IMPL_SPACE boost::container #elif defined(ICL_USE_STD_IMPLEMENTATION) # define ICL_IMPL_SPACE std #else # define ICL_IMPL_SPACE std #endif /*-----------------------------------------------------------------------------+ | MEMO 2012-12-30: Due to problems with new c++11 compilers and their | | implementation of rvalue references, ICL's move implementation will be | | disabled for some new compilers for version 1.53. | +-----------------------------------------------------------------------------*/ #if defined(BOOST_NO_CXX11_RVALUE_REFERENCES) # define BOOST_ICL_NO_CXX11_RVALUE_REFERENCES //#elif defined(__clang__) //# define BOOST_ICL_NO_CXX11_RVALUE_REFERENCES //#elif (defined(__GNUC__) && (__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) //# define BOOST_ICL_NO_CXX11_RVALUE_REFERENCES #endif #include <boost/move/move.hpp> #endif // BOOST_ICL_IMPL_CONFIG_HPP_JOFA_091225
Save
cmd:
run