pstore2
utility.hpp
Go to the documentation of this file.
1 //===- include/pstore/adt/utility.hpp ---------------------*- mode: C++ -*-===//
2 //* _ _ _ _ _ *
3 //* _ _| |_(_) (_) |_ _ _ *
4 //* | | | | __| | | | __| | | | *
5 //* | |_| | |_| | | | |_| |_| | *
6 //* \__,_|\__|_|_|_|\__|\__, | *
7 //* |___/ *
8 //===----------------------------------------------------------------------===//
9 //
10 // Part of the pstore project, under the Apache License v2.0 with LLVM Exceptions.
11 // See https://github.com/SNSystems/pstore/blob/master/LICENSE.txt for license
12 // information.
13 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
14 //
15 //===----------------------------------------------------------------------===//
18 
19 #ifndef PSTORE_ADT_UTILITY_HPP
20 #define PSTORE_ADT_UTILITY_HPP
21 
22 namespace pstore {
23 
24  struct in_place_t {
25  explicit in_place_t () = default;
26  };
27 
28  constexpr in_place_t in_place{};
29 
30 } // end namespace pstore
31 
32 #endif // PSTORE_ADT_UTILITY_HPP
Definition: utility.hpp:24
Definition: nonpod2.cpp:40