/
usr
/
include
/
boost
/
type_traits
/
detail
/
/usr/include/boost/type_traits/detail
mkdir
upload
Name
Size
Mode
Actions
bool_trait_def.hpp
4762
0644
edit
dl
rm
bool_trait_undef.hpp
929
0644
edit
dl
rm
common_arithmetic_type.hpp
5585
0644
edit
dl
rm
common_type_impl.hpp
3028
0644
edit
dl
rm
composite_member_pointer_type.hpp
2823
0644
edit
dl
rm
composite_pointer_type.hpp
3624
0644
edit
dl
rm
config.hpp
4380
0644
edit
dl
rm
detector.hpp
915
0644
edit
dl
rm
has_binary_operator.hpp
12287
0644
edit
dl
rm
has_postfix_operator.hpp
10009
0644
edit
dl
rm
has_prefix_operator.hpp
10899
0644
edit
dl
rm
ice_and.hpp
1190
0644
edit
dl
rm
ice_eq.hpp
1165
0644
edit
dl
rm
ice_not.hpp
971
0644
edit
dl
rm
ice_or.hpp
1192
0644
edit
dl
rm
is_function_cxx_03.hpp
3072
0644
edit
dl
rm
is_function_cxx_11.hpp
30056
0644
edit
dl
rm
is_function_msvc10_fix.hpp
1925
0644
edit
dl
rm
is_function_ptr_helper.hpp
37000
0644
edit
dl
rm
is_function_ptr_tester.hpp
48427
0644
edit
dl
rm
is_likely_lambda.hpp
2650
0644
edit
dl
rm
is_member_function_pointer_cxx_03.hpp
3673
0644
edit
dl
rm
is_member_function_pointer_cxx_11.hpp
39455
0644
edit
dl
rm
is_mem_fun_pointer_impl.hpp
145750
0644
edit
dl
rm
is_mem_fun_pointer_tester.hpp
193755
0644
edit
dl
rm
is_rvalue_reference_msvc10_fix.hpp
3510
0644
edit
dl
rm
mp_defer.hpp
1359
0644
edit
dl
rm
template_arity_spec.hpp
535
0644
edit
dl
rm
yes_no_type.hpp
726
0644
edit
dl
rm
Edit:
/usr/include/boost/type_traits/detail/config.hpp
(4380B)
// (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000. // Use, modification and distribution are subject to 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/type_traits for most recent version including documentation. #ifndef BOOST_TT_CONFIG_HPP_INCLUDED #define BOOST_TT_CONFIG_HPP_INCLUDED #ifndef BOOST_CONFIG_HPP #include <boost/config.hpp> #endif #include <boost/version.hpp> #include <boost/config/workaround.hpp> // // whenever we have a conversion function with ellipses // it needs to be declared __cdecl to suppress compiler // warnings from MS and Borland compilers (this *must* // appear before we include is_same.hpp below): #if defined(BOOST_MSVC) || (defined(BOOST_BORLANDC) && !defined(BOOST_DISABLE_WIN32)) # define BOOST_TT_DECL __cdecl #else # define BOOST_TT_DECL /**/ #endif # if (BOOST_WORKAROUND(__MWERKS__, < 0x3000) \ || BOOST_WORKAROUND(__IBMCPP__, < 600 ) \ || BOOST_WORKAROUND(BOOST_BORLANDC, < 0x5A0) \ || defined(__ghs) \ || BOOST_WORKAROUND(__HP_aCC, < 60700) \ || BOOST_WORKAROUND(MPW_CPLUS, BOOST_TESTED_AT(0x890)) \ || BOOST_WORKAROUND(__SUNPRO_CC, BOOST_TESTED_AT(0x580))) \ && defined(BOOST_NO_IS_ABSTRACT) # define BOOST_TT_NO_CONFORMING_IS_CLASS_IMPLEMENTATION 1 #endif #ifndef BOOST_TT_NO_CONFORMING_IS_CLASS_IMPLEMENTATION # define BOOST_TT_HAS_CONFORMING_IS_CLASS_IMPLEMENTATION 1 #endif // // define BOOST_TT_TEST_MS_FUNC_SIGS // when we want to test __stdcall etc function types with is_function etc // (Note, does not work with Borland, even though it does support __stdcall etc): // #if defined(_MSC_EXTENSIONS) && !defined(BOOST_BORLANDC) # define BOOST_TT_TEST_MS_FUNC_SIGS #endif // // define BOOST_TT_NO_CV_FUNC_TEST // if tests for cv-qualified member functions don't // work in is_member_function_pointer // #if BOOST_WORKAROUND(__MWERKS__, < 0x3000) || BOOST_WORKAROUND(__IBMCPP__, <= 600) # define BOOST_TT_NO_CV_FUNC_TEST #endif // // Macros that have been deprecated, defined here for backwards compatibility: // #define BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(x) #define BOOST_TT_BROKEN_COMPILER_SPEC(x) // // Can we implement "accurate" binary operator detection: // #if !defined(BOOST_NO_SFINAE_EXPR) && !defined(BOOST_NO_CXX11_DECLTYPE) && !BOOST_WORKAROUND(BOOST_MSVC, < 1900) && !BOOST_WORKAROUND(BOOST_GCC, < 40900) # define BOOST_TT_HAS_ACCURATE_BINARY_OPERATOR_DETECTION #endif #if defined(__clang__) && (__clang_major__ == 3) && (__clang_minor__ < 2) && defined(BOOST_TT_HAS_ACCURATE_BINARY_OPERATOR_DETECTION) #undef BOOST_TT_HAS_ACCURATE_BINARY_OPERATOR_DETECTION #endif // // Can we implement accurate is_function/is_member_function_pointer (post C++03)? // #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && !BOOST_WORKAROUND(BOOST_GCC, < 40805)\ && !BOOST_WORKAROUND(BOOST_MSVC, < 1900) && !BOOST_WORKAROUND(__clang_major__, <= 4) # define BOOST_TT_HAS_ASCCURATE_IS_FUNCTION #endif #if defined(_MSVC_LANG) && (_MSVC_LANG >= 201703) # define BOOST_TT_NO_DEDUCED_NOEXCEPT_PARAM #endif #if defined(__APPLE_CC__) && defined(__clang_major__) && (__clang_major__ == 9) && (__clang_minor__ == 0) # define BOOST_TT_NO_DEDUCED_NOEXCEPT_PARAM # define BOOST_TT_NO_NOEXCEPT_SEPARATE_TYPE #endif // // If we have the SD6 macros (check for C++11's __cpp_rvalue_references), and we don't have __cpp_noexcept_function_type // set, then don't treat noexcept functions as seperate types. This is a fix for msvc with the /Zc:noexceptTypes- flag set. // #if defined(__cpp_rvalue_references) && !defined(__cpp_noexcept_function_type) && !defined(BOOST_TT_NO_NOEXCEPT_SEPARATE_TYPE) # define BOOST_TT_NO_NOEXCEPT_SEPARATE_TYPE #endif // // Check MSVC specific macro on older msvc compilers that don't support the SD6 macros, we don't rely on this // if the SD6 macros *are* available as it appears to be undocumented. // #if defined(BOOST_MSVC) && !defined(__cpp_rvalue_references) && !defined(BOOST_TT_NO_NOEXCEPT_SEPARATE_TYPE) && !defined(_NOEXCEPT_TYPES_SUPPORTED) # define BOOST_TT_NO_NOEXCEPT_SEPARATE_TYPE #endif #endif // BOOST_TT_CONFIG_HPP_INCLUDED
Save
cmd:
run