]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/pfr/detail/size_t_.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / pfr / detail / size_t_.hpp
CommitLineData
20effc67
TL
1// Copyright (c) 2016-2020 Antony Polukhin
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 BOOST_PFR_DETAIL_SIZE_T_HPP
7#define BOOST_PFR_DETAIL_SIZE_T_HPP
8#pragma once
9
10namespace boost { namespace pfr { namespace detail {
11
12///////////////////// General utility stuff
13template <std::size_t Index>
14using size_t_ = std::integral_constant<std::size_t, Index >;
15
16}}} // namespace boost::pfr::detail
17
18#endif // BOOST_PFR_DETAIL_SIZE_T_HPP