_prefix.h 825 B

1234567891011121314151617181920212223
  1. /*
  2. Copyright Rene Rivera 2008-2013
  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. #ifndef BOOST_PREDEF_LIBRARY_STD__PREFIX_H
  8. #define BOOST_PREDEF_LIBRARY_STD__PREFIX_H
  9. /*
  10. We need to include an STD header to gives us the context
  11. of which library we are using. The "smallest" code-wise header
  12. seems to be <exception>. Boost uses <utility> but as far
  13. as I can tell (RR) it's not a stand-alone header in most
  14. implementations. Using <exception> also has the benefit of
  15. being available in EC++, so we get a chance to make this work
  16. for embedded users. And since it's not a header impacted by TR1
  17. there's no magic needed for inclusion in the face of the
  18. Boost.TR1 library.
  19. */
  20. #include <boost/predef/detail/_exception.h>
  21. #endif