]> AND Private Git Repository - canny.git/blob - stc/exp/ml_stc_linux_make_v1.0/include/boost/current_function.hpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
3714e9e3bb22aceb313335b192bb49b5278d5936
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / current_function.hpp
1 #ifndef BOOST_CURRENT_FUNCTION_HPP_INCLUDED\r
2 #define BOOST_CURRENT_FUNCTION_HPP_INCLUDED\r
3 \r
4 // MS compatible compilers support #pragma once\r
5 \r
6 #if defined(_MSC_VER) && (_MSC_VER >= 1020)\r
7 # pragma once\r
8 #endif\r
9 \r
10 //\r
11 //  boost/current_function.hpp - BOOST_CURRENT_FUNCTION\r
12 //\r
13 //  Copyright (c) 2002 Peter Dimov and Multi Media Ltd.\r
14 //\r
15 // Distributed under the Boost Software License, Version 1.0. (See\r
16 // accompanying file LICENSE_1_0.txt or copy at\r
17 // http://www.boost.org/LICENSE_1_0.txt)\r
18 //\r
19 //  http://www.boost.org/libs/utility/current_function.html\r
20 //\r
21 \r
22 namespace boost\r
23 {\r
24 \r
25 namespace detail\r
26 {\r
27 \r
28 inline void current_function_helper()\r
29 {\r
30 \r
31 #if defined(__GNUC__) || (defined(__MWERKS__) && (__MWERKS__ >= 0x3000)) || (defined(__ICC) && (__ICC >= 600))\r
32 \r
33 # define BOOST_CURRENT_FUNCTION __PRETTY_FUNCTION__\r
34 \r
35 #elif defined(__DMC__) && (__DMC__ >= 0x810)\r
36 \r
37 # define BOOST_CURRENT_FUNCTION __PRETTY_FUNCTION__\r
38 \r
39 #elif defined(__FUNCSIG__)\r
40 \r
41 # define BOOST_CURRENT_FUNCTION __FUNCSIG__\r
42 \r
43 #elif (defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 600)) || (defined(__IBMCPP__) && (__IBMCPP__ >= 500))\r
44 \r
45 # define BOOST_CURRENT_FUNCTION __FUNCTION__\r
46 \r
47 #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x550)\r
48 \r
49 # define BOOST_CURRENT_FUNCTION __FUNC__\r
50 \r
51 #elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901)\r
52 \r
53 # define BOOST_CURRENT_FUNCTION __func__\r
54 \r
55 #else\r
56 \r
57 # define BOOST_CURRENT_FUNCTION "(unknown)"\r
58 \r
59 #endif\r
60 \r
61 }\r
62 \r
63 } // namespace detail\r
64 \r
65 } // namespace boost\r
66 \r
67 #endif // #ifndef BOOST_CURRENT_FUNCTION_HPP_INCLUDED\r