Sane C++ Libraries
C++ Platform Abstraction Libraries
AlignedStorage.h
1// Copyright (c) Stefano Cristiano
2// SPDX-License-Identifier: MIT
3#pragma once
4#include "../Foundation/PrimitiveTypes.h"
5
6namespace SC
7{
8#if !DOXYGEN
9template <typename T, size_t E, size_t R = sizeof(T)>
10void static_assert_size()
11{
12 static_assert(R <= E, "Size mismatch");
13}
14#endif
15#if SC_COMPILER_GCC
16#pragma GCC diagnostic push
17#pragma GCC diagnostic ignored "-Wstringop-overflow="
18#endif
21
27template <int N, int Alignment = alignof(void*)>
29{
38 template <typename T>
40 {
41 static_assert_size<T, N>();
42 static_assert(alignof(T) <= Alignment, "Increase Alignment of AlignedStorage");
43 return *reinterpret_cast<T*>(bytes);
44 }
45
54 template <typename T>
55 const T& reinterpret_as() const
56 {
57 static_assert_size<T, N>();
58 static_assert(alignof(T) <= Alignment, "Increase Alignment of AlignedStorage");
59 return *reinterpret_cast<const T*>(bytes);
60 }
61
62 private:
63 alignas(Alignment) char bytes[N] = {0};
64};
65
67#if SC_COMPILER_GCC
68#pragma GCC diagnostic pop
69#endif
70} // namespace SC
A buffer of bytes with given alignment.
Definition: AlignedStorage.h:29
T & reinterpret_as()
Access wanted OS Handle with it's actual type.
Definition: AlignedStorage.h:39
const T & reinterpret_as() const
Access wanted OS Handle with it's actual type.
Definition: AlignedStorage.h:55