blob: d853f0ea4cbacf00a7029bd8950b450eff7d51dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/////////////////////////////////////////////////////////////////////////////
// Copyright (c) Electronic Arts Inc. All rights reserved.
/////////////////////////////////////////////////////////////////////////////
#ifndef EASTL_INTERNAL_PIECEWISE_CONSTRUCT_T_H
#define EASTL_INTERNAL_PIECEWISE_CONSTRUCT_T_H
#include <EABase/eabase.h>
#if defined(EA_PRAGMA_ONCE_SUPPORTED)
#pragma once
#endif
namespace eastl
{
///////////////////////////////////////////////////////////////////////////////
/// piecewise_construct_t
///
/// http://en.cppreference.com/w/cpp/utility/piecewise_construct_t
///
struct piecewise_construct_t
{
explicit piecewise_construct_t() = default;
};
///////////////////////////////////////////////////////////////////////////////
/// piecewise_construct
///
/// A tag type used to disambiguate between function overloads that take two tuple arguments.
///
/// http://en.cppreference.com/w/cpp/utility/piecewise_construct
///
EA_CONSTEXPR piecewise_construct_t piecewise_construct = eastl::piecewise_construct_t();
} // namespace eastl
#endif // Header include guard
|