diff options
Diffstat (limited to 'include/EASTL/internal/piecewise_construct_t.h')
-rw-r--r-- | include/EASTL/internal/piecewise_construct_t.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/include/EASTL/internal/piecewise_construct_t.h b/include/EASTL/internal/piecewise_construct_t.h deleted file mode 100644 index d853f0e..0000000 --- a/include/EASTL/internal/piecewise_construct_t.h +++ /dev/null @@ -1,46 +0,0 @@ -///////////////////////////////////////////////////////////////////////////// -// 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 - - - - - - |