optional_config.hpp 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. // Copyright (C) 2003, 2008 Fernando Luis Cacciola Carballal.
  2. // Copyright (C) 2015 Andrzej Krzemienski.
  3. //
  4. // Use, modification, and distribution is subject to the Boost Software
  5. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. // See http://www.boost.org/libs/optional for documentation.
  9. //
  10. // You are welcome to contact the author at:
  11. // akrzemi1@gmail.com
  12. #ifndef BOOST_OPTIONAL_DETAIL_OPTIONAL_CONFIG_AJK_28JAN2015_HPP
  13. #define BOOST_OPTIONAL_DETAIL_OPTIONAL_CONFIG_AJK_28JAN2015_HPP
  14. #include <boost/config.hpp>
  15. #include <boost/detail/workaround.hpp>
  16. #if (defined BOOST_NO_CXX11_RVALUE_REFERENCES) || (defined BOOST_OPTIONAL_CONFIG_NO_RVALUE_REFERENCES)
  17. # define BOOST_OPTIONAL_DETAIL_NO_RVALUE_REFERENCES
  18. #endif
  19. #if BOOST_WORKAROUND(BOOST_INTEL_CXX_VERSION,<=700)
  20. // AFAICT only Intel 7 correctly resolves the overload set
  21. // that includes the in-place factory taking functions,
  22. // so for the other icc versions, in-place factory support
  23. // is disabled
  24. # define BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT
  25. #endif
  26. #if BOOST_WORKAROUND(__BORLANDC__, <= 0x551)
  27. // BCB (5.5.1) cannot parse the nested template struct in an inplace factory.
  28. # define BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT
  29. #endif
  30. #if !defined(BOOST_OPTIONAL_NO_INPLACE_FACTORY_SUPPORT) \
  31. && defined BOOST_BCB_PARTIAL_SPECIALIZATION_BUG
  32. // BCB (up to 5.64) has the following bug:
  33. // If there is a member function/operator template of the form
  34. // template<class Expr> mfunc( Expr expr ) ;
  35. // some calls are resolved to this even if there are other better matches.
  36. // The effect of this bug is that calls to converting ctors and assignments
  37. // are incorrectly sink to this general catch-all member function template as shown above.
  38. # define BOOST_OPTIONAL_WEAK_OVERLOAD_RESOLUTION
  39. #endif
  40. #if defined(__GNUC__) && !defined(__INTEL_COMPILER)
  41. // GCC since 3.3 has may_alias attribute that helps to alleviate optimizer issues with
  42. // regard to violation of the strict aliasing rules. The optional< T > storage type is marked
  43. // with this attribute in order to let the compiler know that it will alias objects of type T
  44. // and silence compilation warnings.
  45. # define BOOST_OPTIONAL_DETAIL_USE_ATTRIBUTE_MAY_ALIAS
  46. #endif
  47. #if (defined(_MSC_VER) && _MSC_VER <= 1800)
  48. // on MSCV 2013 and earlier an unwanted temporary is created when you assign from
  49. // a const lvalue of integral type. Thus we bind not to the original address but
  50. // to a temporary.
  51. # define BOOST_OPTIONAL_CONFIG_NO_PROPER_ASSIGN_FROM_CONST_INT
  52. #endif
  53. #if (defined __GNUC__) && (!defined BOOST_INTEL_CXX_VERSION) && (!defined __clang__)
  54. // On some GCC versions an unwanted temporary is created when you copy-initialize
  55. // from a const lvalue of integral type. Thus we bind not to the original address but
  56. // to a temporary.
  57. # if (__GNUC__ < 4)
  58. # define BOOST_OPTIONAL_CONFIG_NO_PROPER_CONVERT_FROM_CONST_INT
  59. # endif
  60. # if (__GNUC__ == 4 && __GNUC_MINOR__ <= 5)
  61. # define BOOST_OPTIONAL_CONFIG_NO_PROPER_CONVERT_FROM_CONST_INT
  62. # endif
  63. # if (__GNUC__ == 5 && __GNUC_MINOR__ < 2)
  64. # define BOOST_OPTIONAL_CONFIG_NO_PROPER_CONVERT_FROM_CONST_INT
  65. # endif
  66. # if (__GNUC__ == 5 && __GNUC_MINOR__ == 2 && __GNUC_PATCHLEVEL__ == 0)
  67. # define BOOST_OPTIONAL_CONFIG_NO_PROPER_CONVERT_FROM_CONST_INT
  68. # endif
  69. #endif // defined(__GNUC__)
  70. #if (defined __GNUC__) && (!defined BOOST_NO_CXX11_RVALUE_REFERENCES)
  71. // On some initial rvalue reference implementations GCC does it in a strange way,
  72. // preferring perfect-forwarding constructor to implicit copy constructor.
  73. # if (__GNUC__ == 4 && __GNUC_MINOR__ == 4)
  74. # define BOOST_OPTIONAL_CONFIG_NO_LEGAL_CONVERT_FROM_REF
  75. # endif
  76. # if (__GNUC__ == 4 && __GNUC_MINOR__ == 5)
  77. # define BOOST_OPTIONAL_CONFIG_NO_LEGAL_CONVERT_FROM_REF
  78. # endif
  79. #endif // defined(__GNUC__)
  80. #endif // header guard