diff options
| author | 2022-01-25 13:59:42 +0000 | |
|---|---|---|
| committer | 2022-01-25 14:02:36 +0000 | |
| commit | d79147e7afe2eca34780c607f78b11f8b3dd017d (patch) | |
| tree | a3f9a145dd53f9c1c268ac9b521ac907b802eab0 /include/utility/aligned_storage.h | |
| parent | Fix a few Doxygen comment errors. (diff) | |
Abolish the infernal space before accessibility keywords.
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; |
