diff options
Diffstat (limited to 'include/utility/aligned_storage.h')
| -rw-r--r-- | include/utility/aligned_storage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/utility/aligned_storage.h b/include/utility/aligned_storage.h index d3a6fb40a..fbd9b5fba 100644 --- a/include/utility/aligned_storage.h +++ b/include/utility/aligned_storage.h @@ -28,11 +28,11 @@ namespace insp template <typename T> class insp::aligned_storage final { - private: +private: /** The underlying aligned storage block. */ mutable typename std::aligned_storage<sizeof(T), std::alignment_of<T>::value>::type data; - public: +public: /** Default constructor for the aligned_storage class. */ aligned_storage() = default; |
