mpl.qbk 754 B

12345678910111213141516171819
  1. [/
  2. Copyright 2007 John Maddock.
  3. Distributed under the Boost Software License, Version 1.0.
  4. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt).
  6. ]
  7. [section:mpl MPL Interoperability]
  8. All the value based traits in this library conform to MPL's requirements
  9. for an [@../../../../libs/mpl/doc/refmanual/integral-constant.html Integral Constant type].
  10. Please note that these types no longer inherit from `mpl::true_` or `mpl::false_` etc, and the library
  11. will no longer implicitly include any MPL header. However there is an implicit conversion from
  12. `integral_constant` to the corresponding MPL types, therefore tag-dispatching that uses MPL types
  13. in function overloads will still work as before.
  14. [endsect]