environment.cpp 865 B

1234567891011121314151617181920212223
  1. // (C) Copyright Gennadiy Rozental 2004-2008.
  2. // Use, modification, and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org/libs/test for the library home page.
  6. //
  7. // File : $RCSfile$
  8. //
  9. // Version : $Revision: 49312 $
  10. //
  11. // Description : implements offline model of program environment
  12. // ***************************************************************************
  13. #include <boost/test/utils/runtime/config.hpp>
  14. #ifdef BOOST_MSVC
  15. # pragma warning(disable: 4127) // conditional expression is constant
  16. # pragma warning(disable: 4701) // local environment 'result' may be used without having been initialized
  17. #endif
  18. #define BOOST_RT_PARAM_INLINE
  19. #include <boost/test/utils/runtime/env/environment.ipp>