Main Page
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
y
Variables
_
a
b
i
k
n
p
r
s
t
v
Typedefs
a
b
c
f
h
i
m
n
p
s
t
u
w
y
Enumerations
Enumerator
a
b
c
e
f
h
i
l
m
n
o
p
r
s
t
u
v
w
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
~
Variables
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
y
Enumerations
Enumerator
a
b
c
e
g
i
k
l
m
n
o
p
r
s
u
v
Related Functions
a
b
c
d
e
i
l
m
o
r
s
u
w
x
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
g
m
o
p
r
s
t
Variables
_
a
b
f
g
l
t
u
Typedefs
Enumerations
Enumerator
Macros
_
a
b
c
e
f
g
i
l
m
r
s
u
v
w
x
sick_visionary_cpp_shared
3pp
boost
current_function.hpp
Go to the documentation of this file.
1
#ifndef BOOST_CURRENT_FUNCTION_HPP_INCLUDED
2
#define BOOST_CURRENT_FUNCTION_HPP_INCLUDED
3
4
// MS compatible compilers support #pragma once
5
6
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
7
# pragma once
8
#endif
9
10
//
11
// boost/current_function.hpp - BOOST_CURRENT_FUNCTION
12
//
13
// Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
14
//
15
// Distributed under the Boost Software License, Version 1.0.
16
// See accompanying file LICENSE_1_0.txt or copy at
17
// http://www.boost.org/LICENSE_1_0.txt
18
//
19
// http://www.boost.org/libs/assert/current_function.html
20
//
21
22
namespace
boost
23
{
24
25
namespace
detail
26
{
27
28
inline
void
current_function_helper
()
29
{
30
31
#if defined(__GNUC__) || (defined(__MWERKS__) && (__MWERKS__ >= 0x3000)) || (defined(__ICC) && (__ICC >= 600)) || defined(__ghs__)
32
33
# define BOOST_CURRENT_FUNCTION __PRETTY_FUNCTION__
34
35
#elif defined(__DMC__) && (__DMC__ >= 0x810)
36
37
# define BOOST_CURRENT_FUNCTION __PRETTY_FUNCTION__
38
39
#elif defined(__FUNCSIG__)
40
41
# define BOOST_CURRENT_FUNCTION __FUNCSIG__
42
43
#elif (defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 600)) || (defined(__IBMCPP__) && (__IBMCPP__ >= 500))
44
45
# define BOOST_CURRENT_FUNCTION __FUNCTION__
46
47
#elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x550)
48
49
# define BOOST_CURRENT_FUNCTION __FUNC__
50
51
#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901)
52
53
# define BOOST_CURRENT_FUNCTION __func__
54
55
#elif defined(__cplusplus) && (__cplusplus >= 201103)
56
57
# define BOOST_CURRENT_FUNCTION __func__
58
59
#else
60
61
# define BOOST_CURRENT_FUNCTION "(unknown)"
62
63
#endif
64
65
}
66
67
}
// namespace detail
68
69
}
// namespace boost
70
71
#endif // #ifndef BOOST_CURRENT_FUNCTION_HPP_INCLUDED
boost
BOOST_MOVE_USE_STANDARD_LIBRARY_MOVE.
boost::detail::current_function_helper
void current_function_helper()
Definition:
current_function.hpp:28
sick_visionary_ros
Author(s): SICK AG TechSupport 3D Snapshot
autogenerated on Thu Feb 8 2024 03:38:10