aboutsummaryrefslogtreecommitdiffstats
path: root/include/utility/aligned_storage.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-01-25 13:59:42 +0000
committerGravatar Sadie Powell2022-01-25 14:02:36 +0000
commitd79147e7afe2eca34780c607f78b11f8b3dd017d (patch)
treea3f9a145dd53f9c1c268ac9b521ac907b802eab0 /include/utility/aligned_storage.h
parentFix 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.h4
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;