Boost-Graph

 view release on metacpan or  search on metacpan

include/boost/test/utils/runtime/config.hpp  view on Meta::CPAN

#else
typedef std::basic_ostream<char_type>                           out_stream;
#endif

#if defined(__COMO__)
inline void
putenv_impl( cstring name, cstring value )
{
    using namespace std;
    // !! this may actually fail. What should we do?
    setenv( name.begin(), value.begin(), 1 );
}
#else
inline void
putenv_impl( cstring name, cstring value )
{
    format_stream fs;

    fs << name << '=' << value;

    // !! this may actually fail. What should we do?

include/boost/test/utils/runtime/config.hpp  view on Meta::CPAN


} // namespace BOOST_RT_PARAM_NAMESPACE

} // namespace boost

// ************************************************************************** //
//   Revision History:
//
//   $Log: config.hpp,v $
//   Revision 1.3  2005/05/06 04:02:52  rogeeff
//   include ctdlib for setenv
//
//   Revision 1.2  2005/05/05 05:55:31  rogeeff
//   portability fixes
//
//   Revision 1.1  2005/04/12 06:42:42  rogeeff
//   Runtime.Param library initial commit
//
// ************************************************************************** //

#endif // BOOST_RT_CONFIG_HPP_062604GER



( run in 0.355 second using v1.01-cache-2.11-cpan-3989ada0592 )