]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/dll/test/section_name_too_big.cpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / dll / test / section_name_too_big.cpp
1 // Copyright 2011-2012 Renato Tegon Forti
2 // Copyright 2014 Renato Tegon Forti, Antony Polukhin.
3 // Copyright 2015-2020 Antony Polukhin.
4 //
5 // Distributed under the Boost Software License, Version 1.0.
6 // (See accompanying file LICENSE_1_0.txt
7 // or copy at http://www.boost.org/LICENSE_1_0.txt)
8
9 // For more information, see http://www.boost.org
10
11 #define BOOST_DLL_FORCE_ALIAS_INSTANTIATION
12 #include <boost/dll/config.hpp>
13 #include <boost/dll/alias.hpp>
14
15 int integer_g = 100;
16 BOOST_DLL_ALIAS_SECTIONED(integer_g, integer_g_aliased, "long_section_name")
17