11 lines
235 B
C++
11 lines
235 B
C++
#pragma once
|
|
|
|
namespace stdx {
|
|
inline namespace v1 {
|
|
struct place_bits_t {};
|
|
constexpr inline auto place_bits = place_bits_t{};
|
|
struct all_bits_t {};
|
|
constexpr inline auto all_bits = all_bits_t{};
|
|
} // namespace v1
|
|
} // namespace stdx
|