]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/qvm/detail/remove_const.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / qvm / detail / remove_const.hpp
CommitLineData
b32b8144
FG
1//Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc.\r
2\r
3//Distributed under the Boost Software License, Version 1.0. (See accompanying\r
4//file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\r
5\r
6#ifndef UUID_4E340430AE4C11DEBA56149755D89593\r
7#define UUID_4E340430AE4C11DEBA56149755D89593\r
8\r
9namespace\r
10boost\r
11 {\r
12 namespace\r
13 qvm\r
14 {\r
15 namespace\r
16 qvm_detail\r
17 {\r
18 template <class T>\r
19 struct\r
20 remove_const\r
21 {\r
22 typedef T type;\r
23 };\r
24\r
25 template <class T>\r
26 struct\r
27 remove_const<T const>\r
28 {\r
29 typedef T type;\r
30 };\r
31 }\r
32 }\r
33 }\r
34\r
35#endif\r