]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/vmd/doc/vmd_internal.qbk
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / vmd / doc / vmd_internal.qbk
CommitLineData
7c673cae
FG
1[/
2 (C) Copyright Edward Diener 2011-2015
3 Distributed under the Boost Software License, Version 1.0.
4 (See accompanying file LICENSE_1_0.txt or copy at
5 http://www.boost.org/LICENSE_1_0.txt).
6]
7
8[section:vmd_internal_macros Controlling internal usage]
9
10VMD has a few object-like macros which the end-user of the library can use
11to determine or change the way variadic macros are used in the library.
12
13The macro BOOST_PP_VARIADICS is part of the Boost PP library, not part of VMD.
14It is used to denote whether variadic data support exists for the particular compiler
15the end-user is using. VMD also uses this macro to determine whether variadic
16data support exists. An end-user of VMD can use this macro in his own design
17to determine whether or not variadic macros are supported. Furthermore
18an end-user of VMD can set this macro to 0 or non-zero, before including
19a VMD header file, to force VMD to treat the particular compiler being
20used as not supporting or supporting variadic macros. If a compiler does
21not support variadic macro none of the macros in VMD are defined.
22
23The macro BOOST_VMD_ASSERT_DATA controls whether or not an assert macro
24will check its data. The default is that in compiler debug mode it will check the
25data while in compiler release mode it will not check its data. The end-user can
26change this by setting the macro to 0 to not check the data, or non-zero to check
27the data, before including a VMD header file, or check the value if necessary after
28including a VMD header file.
29
30[endsect]