aboutsummaryrefslogtreecommitdiff
path: root/libcutl/shared-ptr/base.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libcutl/shared-ptr/base.cxx')
-rw-r--r--libcutl/shared-ptr/base.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/libcutl/shared-ptr/base.cxx b/libcutl/shared-ptr/base.cxx
index a3bc774..10e998f 100644
--- a/libcutl/shared-ptr/base.cxx
+++ b/libcutl/shared-ptr/base.cxx
@@ -33,6 +33,8 @@ operator new (size_t n, cutl::share s)
// of this platform. Twice the pointer size is a good guess for
// most platforms.
//
+ // @@ Need to redo this properly using alignof(std::max_align_t).
+ //
size_t* p = static_cast<size_t*> (operator new (n + 2 * sizeof (size_t)));
*p++ = 1; // Initial count.
*p++ = 0xDEADBEEF; // Signature.