|
||||
File indexing completed on 2025-01-18 09:43:38
0001 // Copyright (c) 2016-2023 Antony Polukhin 0002 // 0003 // Distributed under the Boost Software License, Version 1.0. (See accompanying 0004 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 0005 0006 #ifndef BOOST_PFR_DETAIL_SIZE_T_HPP 0007 #define BOOST_PFR_DETAIL_SIZE_T_HPP 0008 #pragma once 0009 0010 namespace boost { namespace pfr { namespace detail { 0011 0012 ///////////////////// General utility stuff 0013 template <std::size_t Index> 0014 using size_t_ = std::integral_constant<std::size_t, Index >; 0015 0016 }}} // namespace boost::pfr::detail 0017 0018 #endif // BOOST_PFR_DETAIL_SIZE_T_HPP
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |