Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:29:46

0001 //  Copyright 2009-2010 Vicente J. Botet Escriba
0002 
0003 //  Distributed under the Boost Software License, Version 1.0.
0004 //  See http://www.boost.org/LICENSE_1_0.txt
0005 
0006 #ifndef BOOST_CHRONO_DETAIL_SYSTEM_HPP
0007 #define BOOST_CHRONO_DETAIL_SYSTEM_HPP
0008 
0009 #if !defined BOOST_CHRONO_DONT_PROVIDE_HYBRID_ERROR_HANDLING
0010 
0011 #include <boost/system/error_code.hpp>
0012 
0013 namespace boost {
0014 namespace chrono {
0015     inline bool is_throws(system::error_code  & ec) { return (&ec==&boost::throws()); }
0016 }
0017 }
0018 
0019 #endif
0020 #endif