os/ossrv/ossrv_pub/boost_apis/boost/current_function.hpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/current_function.hpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,63 @@
     1.4 +#ifndef BOOST_CURRENT_FUNCTION_HPP_INCLUDED
     1.5 +#define BOOST_CURRENT_FUNCTION_HPP_INCLUDED
     1.6 +
     1.7 +// MS compatible compilers support #pragma once
     1.8 +
     1.9 +#if defined(_MSC_VER) && (_MSC_VER >= 1020)
    1.10 +# pragma once
    1.11 +#endif
    1.12 +
    1.13 +//
    1.14 +//  boost/current_function.hpp - BOOST_CURRENT_FUNCTION
    1.15 +//
    1.16 +//  Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
    1.17 +//
    1.18 +// Distributed under the Boost Software License, Version 1.0. (See
    1.19 +// accompanying file LICENSE_1_0.txt or copy at
    1.20 +// http://www.boost.org/LICENSE_1_0.txt)
    1.21 +//
    1.22 +//  http://www.boost.org/libs/utility/current_function.html
    1.23 +//
    1.24 +
    1.25 +namespace boost
    1.26 +{
    1.27 +
    1.28 +namespace detail
    1.29 +{
    1.30 +
    1.31 +inline void current_function_helper()
    1.32 +{
    1.33 +
    1.34 +#if defined(__GNUC__) || (defined(__MWERKS__) && (__MWERKS__ >= 0x3000)) || (defined(__ICC) && (__ICC >= 600))
    1.35 +
    1.36 +# define BOOST_CURRENT_FUNCTION __PRETTY_FUNCTION__
    1.37 +
    1.38 +#elif defined(__FUNCSIG__)
    1.39 +
    1.40 +# define BOOST_CURRENT_FUNCTION __FUNCSIG__
    1.41 +
    1.42 +#elif (defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 600)) || (defined(__IBMCPP__) && (__IBMCPP__ >= 500))
    1.43 +
    1.44 +# define BOOST_CURRENT_FUNCTION __FUNCTION__
    1.45 +
    1.46 +#elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x550)
    1.47 +
    1.48 +# define BOOST_CURRENT_FUNCTION __FUNC__
    1.49 +
    1.50 +#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901)
    1.51 +
    1.52 +# define BOOST_CURRENT_FUNCTION __func__
    1.53 +
    1.54 +#else
    1.55 +
    1.56 +# define BOOST_CURRENT_FUNCTION "(unknown)"
    1.57 +
    1.58 +#endif
    1.59 +
    1.60 +}
    1.61 +
    1.62 +} // namespace detail
    1.63 +
    1.64 +} // namespace boost
    1.65 +
    1.66 +#endif // #ifndef BOOST_CURRENT_FUNCTION_HPP_INCLUDED