summaryrefslogtreecommitdiff
path: root/boost/align/detail/offset_object.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/align/detail/offset_object.hpp')
-rw-r--r--boost/align/detail/offset_object.hpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/boost/align/detail/offset_object.hpp b/boost/align/detail/offset_object.hpp
new file mode 100644
index 0000000000..8168595230
--- /dev/null
+++ b/boost/align/detail/offset_object.hpp
@@ -0,0 +1,24 @@
+/*
+ (c) 2014 Glen Joseph Fernandes
+ glenjofe at gmail dot com
+
+ Distributed under the Boost Software
+ License, Version 1.0.
+ http://boost.org/LICENSE_1_0.txt
+*/
+#ifndef BOOST_ALIGN_DETAIL_OFFSET_OBJECT_HPP
+#define BOOST_ALIGN_DETAIL_OFFSET_OBJECT_HPP
+
+namespace boost {
+ namespace alignment {
+ namespace detail {
+ template<class T>
+ struct offset_object {
+ char offset;
+ T object;
+ };
+ }
+ }
+}
+
+#endif