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