Update contrib.
1 // (C) Copyright Jonathan Turkanis 2005.
2 // Distributed under the Boost Software License, Version 1.0. (See accompanying
3 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
5 // See http://www.boost.org/libs/iostreams for documentation.
7 // Recent changes to Boost.Optional involving assigment broke Boost.Iostreams,
8 // in a way which could be remedied only by relying on the deprecated reset
9 // functions; with VC6, even reset didn't work. Until this problem is
10 // understood, Iostreams will use a private version of optional with a smart
13 #ifndef BOOST_IOSTREAMS_DETAIL_OPTIONAL_HPP_INCLUDED
14 #define BOOST_IOSTREAMS_DETAIL_OPTIONAL_HPP_INCLUDED
16 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
21 #include <boost/mpl/int.hpp>
22 #include <boost/type_traits/aligned_storage.hpp>
23 #include <boost/type_traits/alignment_of.hpp>
25 namespace boost { namespace iostreams { namespace detail {
27 // Taken from <boost/optional.hpp>.
31 // Borland ICEs if unnamed unions are used for this!
34 char data[ sizeof(T) ];
35 BOOST_DEDUCED_TYPENAME type_with_alignment<
36 ::boost::alignment_of<T>::value >::type aligner_;
41 void const* address() const { return &dummy_.data[0]; }
42 void * address() { return &dummy_.data[0]; }
48 typedef T element_type;
49 optional() : initialized_(false) { }
50 optional(const T& t) : initialized_(false) { reset(t); }
51 ~optional() { reset(); }
55 return *static_cast<T*>(address());
57 const T& operator*() const
60 return *static_cast<const T*>(address());
65 return static_cast<T*>(address());
67 const T* operator->() const
70 return static_cast<const T*>(address());
75 return static_cast<T*>(address());
80 return static_cast<const T*>(address());
85 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) || \
86 BOOST_WORKAROUND(__IBMCPP__, BOOST_TESTED_AT(600)) \
88 T* t = static_cast<T*>(address());
91 static_cast<T*>(address())->T::~T();
96 void reset(const T& t)
103 optional(const optional&);
104 optional& operator=(const optional&);
105 void* address() { return &storage_; }
106 const void* address() const { return &storage_; }
107 aligned_storage<T> storage_;
111 } } } // End namespaces detail, iostreams, boost.
113 #endif // #ifndef BOOST_IOSTREAMS_DETAIL_OPTIONAL_HPP_INCLUDED