Chrono: FIxed issue with commented BOOST_CHRONO_HAS_PROCESS_CLOCKS in io/time_point_units.hpp

[SVN r75435]
This commit is contained in:
Vicente J. Botet Escriba 2011-11-10 17:10:31 +00:00
parent 31ab150c36
commit 9d61c8b3b5
5 changed files with 8 additions and 7 deletions

View File

@ -88,6 +88,7 @@
#undef BOOST_CHRONO_THREAD_CLOCK_IS_STEADY
#endif
//#undef BOOST_CHRONO_HAS_PROCESS_CLOCKS
// deprecated i/o
//#define BOOST_CHRONO_DONT_PROVIDE_DEPRECATED_IO_V1

View File

@ -1,7 +1,7 @@
// chrono_io
//
// (C) Copyright Howard Hinnant
// (C) Copyright 2010-2011 Vicente J. Botet Escriba
// (C) Copyright 2011 Vicente J. Botet Escriba
// Use, modification and distribution are subject to the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt).

View File

@ -1,7 +1,7 @@
// chrono_io
//
// (C) Copyright Howard Hinnant
// (C) Copyright 2010-2011 Vicente J. Botet Escriba
// (C) Copyright 2011 Vicente J. Botet Escriba
// Use, modification and distribution are subject to the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt).

View File

@ -1,6 +1,6 @@
// boost/chrono/io/ios_base_state.hpp
//
// (C) Copyright 2010-2011 Vicente J. Botet Escriba
// (C) Copyright 2011 Vicente J. Botet Escriba
// Use, modification and distribution are subject to the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt).

View File

@ -129,7 +129,7 @@ namespace boost
do_put(iter_type s, std::ios_base& ios, steady_clock) const = 0;
virtual std::basic_string<CharT> do_get_epoch(steady_clock) const=0;
//#if defined(BOOST_CHRONO_HAS_PROCESS_CLOCKS)
#if defined(BOOST_CHRONO_HAS_PROCESS_CLOCKS)
virtual iter_type do_put(iter_type s, std::ios_base& ios, process_real_cpu_clock c) const =0;
virtual std::basic_string<CharT> do_get_epoch(process_real_cpu_clock) const=0;
virtual iter_type do_put(iter_type s, std::ios_base& ios, process_user_cpu_clock c) const =0;
@ -138,7 +138,7 @@ namespace boost
virtual std::basic_string<CharT> do_get_epoch(process_system_cpu_clock) const=0;
virtual iter_type do_put(iter_type s, std::ios_base& ios, process_cpu_clock c) const =0;
virtual std::basic_string<CharT> do_get_epoch(process_cpu_clock) const=0;
//#endif
#endif
#if defined(BOOST_CHRONO_HAS_THREAD_CLOCK)
virtual iter_type do_put(iter_type s, std::ios_base& ios, thread_clock c) const =0;
virtual std::basic_string<CharT> do_get_epoch(thread_clock) const=0;
@ -208,7 +208,7 @@ namespace boost
return clock_string<steady_clock,CharT>::since();
}
//#if defined(BOOST_CHRONO_HAS_PROCESS_CLOCKS)
#if defined(BOOST_CHRONO_HAS_PROCESS_CLOCKS)
iter_type do_put(iter_type s, std::ios_base& , process_real_cpu_clock c) const
{
std::basic_string<CharT> str = do_get_epoch(c);
@ -246,7 +246,7 @@ namespace boost
return clock_string<process_cpu_clock,CharT>::since();
}
//#endif
#endif
#if defined(BOOST_CHRONO_HAS_THREAD_CLOCK)
iter_type do_put(iter_type s, std::ios_base& , thread_clock c) const
{