]> git.lyx.org Git - lyx.git/blob - boost/boost/current_function.hpp
major boost update
[lyx.git] / boost / boost / current_function.hpp
1 #ifndef BOOST_CURRENT_FUNCTION_HPP_INCLUDED
2 #define BOOST_CURRENT_FUNCTION_HPP_INCLUDED
3
4 #if _MSC_VER >= 1020
5 #pragma once
6 #endif
7
8 //
9 //  boost/current_function.hpp - BOOST_CURRENT_FUNCTION
10 //
11 //  Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
12 //
13 //  Permission to copy, use, modify, sell and distribute this software
14 //  is granted provided this copyright notice appears in all copies.
15 //  This software is provided "as is" without express or implied
16 //  warranty, and with no claim as to its suitability for any purpose.
17 //
18
19 namespace boost
20 {
21
22 namespace detail
23 {
24
25 inline void current_function_helper()
26 {
27
28 #if defined(__GNUC__)
29
30 # define BOOST_CURRENT_FUNCTION __PRETTY_FUNCTION__
31
32 #elif defined(__FUNCSIG__)
33
34 # define BOOST_CURRENT_FUNCTION __FUNCSIG__
35
36 #elif defined(__BORLANDC__)
37
38 # define BOOST_CURRENT_FUNCTION __FUNC__
39
40 #elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901)
41
42 # define BOOST_CURRENT_FUNCTION __func__
43
44 #else
45
46 # define BOOST_CURRENT_FUNCTION "(unknown)"
47
48 #endif
49
50 }
51
52 } // namespace detail
53
54 } // namespace boost
55
56 #endif // #ifndef BOOST_CURRENT_FUNCTION_HPP_INCLUDED