Update to latest from boost 1.34.x branch

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19398 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2007-08-10 12:16:52 +00:00
parent 1050cc4471
commit 9a2bf73e31
130 changed files with 532 additions and 507 deletions

View File

@ -17,7 +17,11 @@
// http://www.boost.org/LICENSE_1_0.txt) // http://www.boost.org/LICENSE_1_0.txt)
// //
#if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 2))
# include <ext/atomicity.h>
#else
# include <bits/atomicity.h> # include <bits/atomicity.h>
#endif
namespace boost namespace boost
{ {

View File

@ -21,8 +21,8 @@
// in anything that may be included by function_template.hpp doesn't break // in anything that may be included by function_template.hpp doesn't break
#include <boost/function/detail/prologue.hpp> #include <boost/function/detail/prologue.hpp>
// Visual Age C++ doesn't handle the file iteration well // Older versions of the IBM C++ compiler do not handle file iterations well
#if BOOST_WORKAROUND(__IBMCPP__, >= 500) #if BOOST_WORKAROUND(__IBMCPP__, >= 500) && BOOST_WORKAROUND(__IBMCPP__, < 800)
# if BOOST_FUNCTION_MAX_ARGS >= 0 # if BOOST_FUNCTION_MAX_ARGS >= 0
# include <boost/function/function0.hpp> # include <boost/function/function0.hpp>
# endif # endif

View File

@ -6,7 +6,7 @@
// Boost functional.hpp header file // Boost functional.hpp header file
// See http://www.boost.org/libs/functional for documentation. // See http://www.boost.org/libs/functional for documentation.
// ------------------------------------------------------------------------------ // ------------------------------------------------------------------------------
// $Id: functional.hpp,v 1.4.20.1 2006/12/02 14:17:26 andreas_huber69 Exp $ // $Id: functional.hpp 36246 2006-12-02 14:17:26Z andreas_huber69 $
// ------------------------------------------------------------------------------ // ------------------------------------------------------------------------------
#ifndef BOOST_FUNCTIONAL_HPP #ifndef BOOST_FUNCTIONAL_HPP

View File

@ -5,7 +5,7 @@
* accompanying file LICENSE_1_0.txt or copy at * accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt) * http://www.boost.org/LICENSE_1_0.txt)
* *
* $Id: integer_traits.hpp,v 1.30 2006/02/05 10:19:42 johnmaddock Exp $ * $Id: integer_traits.hpp 32576 2006-02-05 10:19:42Z johnmaddock $
* *
* Idea by Beman Dawes, Ed Brey, Steve Cleary, and Nathan Myers * Idea by Beman Dawes, Ed Brey, Steve Cleary, and Nathan Myers
*/ */

View File

@ -27,8 +27,8 @@ namespace std { using ::wint_t; }
namespace boost { namespace iostreams { namespace boost { namespace iostreams {
// Dinkumware that comes with QNX Momentics 6.3.0, 4.0.2, incorrectly defines the // Dinkumware that comes with QNX Momentics 6.3.0, 4.0.2, incorrectly defines
// EOF and WEOF macros to not std:: qualify the wint_t type (and so does // the EOF and WEOF macros to not std:: qualify the wint_t type (and so does
// Sun C++ 5.8 + STLport 4). Fix by placing the def in this scope. // Sun C++ 5.8 + STLport 4). Fix by placing the def in this scope.
// NOTE: Use BOOST_WORKAROUND? // NOTE: Use BOOST_WORKAROUND?
#if (defined(__QNX__) && defined(BOOST_DINKUMWARE_STDLIB)) \ #if (defined(__QNX__) && defined(BOOST_DINKUMWARE_STDLIB)) \

View File

@ -127,7 +127,7 @@ struct read_write_if_impl<output> {
template<> template<>
struct seek_if_impl<random_access> { struct seek_if_impl<random_access> {
template<typename T> template<typename T>
static stream_offset static std::streampos
seek( T& t, stream_offset off, BOOST_IOS::seekdir way, seek( T& t, stream_offset off, BOOST_IOS::seekdir way,
BOOST_IOS::openmode which ) BOOST_IOS::openmode which )
{ return iostreams::seek(t, off, way, which); } { return iostreams::seek(t, off, way, which); }
@ -136,7 +136,7 @@ struct seek_if_impl<random_access> {
template<> template<>
struct seek_if_impl<any_tag> { struct seek_if_impl<any_tag> {
template<typename T> template<typename T>
static stream_offset static std::streampos
seek(T&, stream_offset, BOOST_IOS::seekdir, BOOST_IOS::openmode) seek(T&, stream_offset, BOOST_IOS::seekdir, BOOST_IOS::openmode)
{ throw cant_seek(); } { throw cant_seek(); }
}; };

View File

@ -80,7 +80,7 @@ public:
std::streamsize write(const char_type* s, std::streamsize n, Sink* snk) std::streamsize write(const char_type* s, std::streamsize n, Sink* snk)
{ return output_impl::write(t_, snk, s, n); } { return output_impl::write(t_, snk, s, n); }
stream_offset seek( stream_offset off, BOOST_IOS::seekdir way, std::streampos seek( stream_offset off, BOOST_IOS::seekdir way,
BOOST_IOS::openmode which ) BOOST_IOS::openmode which )
{ {
return this->seek( off, way, which, return this->seek( off, way, which,
@ -88,7 +88,7 @@ public:
} }
template<typename Device> template<typename Device>
stream_offset seek( stream_offset off, BOOST_IOS::seekdir way, std::streampos seek( stream_offset off, BOOST_IOS::seekdir way,
BOOST_IOS::openmode which, Device* dev ) BOOST_IOS::openmode which, Device* dev )
{ return any_impl::seek(t_, dev, off, way, which); } { return any_impl::seek(t_, dev, off, way, which); }
@ -122,7 +122,7 @@ public:
template<> template<>
struct device_wrapper_impl<any_tag> { struct device_wrapper_impl<any_tag> {
template<typename Device, typename Dummy> template<typename Device, typename Dummy>
static stream_offset static std::streampos
seek( Device& dev, Dummy*, stream_offset off, seek( Device& dev, Dummy*, stream_offset off,
BOOST_IOS::seekdir way, BOOST_IOS::openmode which ) BOOST_IOS::seekdir way, BOOST_IOS::openmode which )
{ {
@ -131,7 +131,7 @@ struct device_wrapper_impl<any_tag> {
} }
template<typename Device> template<typename Device>
static stream_offset static std::streampos
seek( Device&, stream_offset, BOOST_IOS::seekdir, seek( Device&, stream_offset, BOOST_IOS::seekdir,
BOOST_IOS::openmode, any_tag ) BOOST_IOS::openmode, any_tag )
{ {
@ -139,7 +139,7 @@ struct device_wrapper_impl<any_tag> {
} }
template<typename Device> template<typename Device>
static stream_offset static std::streampos
seek( Device& dev, stream_offset off, seek( Device& dev, stream_offset off,
BOOST_IOS::seekdir way, BOOST_IOS::openmode which, BOOST_IOS::seekdir way, BOOST_IOS::openmode which,
random_access ) random_access )
@ -191,7 +191,7 @@ struct device_wrapper_impl<output> {
template<> template<>
struct flt_wrapper_impl<any_tag> { struct flt_wrapper_impl<any_tag> {
template<typename Filter, typename Device> template<typename Filter, typename Device>
static stream_offset static std::streampos
seek( Filter& f, Device* dev, stream_offset off, seek( Filter& f, Device* dev, stream_offset off,
BOOST_IOS::seekdir way, BOOST_IOS::openmode which ) BOOST_IOS::seekdir way, BOOST_IOS::openmode which )
{ {
@ -200,13 +200,13 @@ struct flt_wrapper_impl<any_tag> {
} }
template<typename Filter, typename Device> template<typename Filter, typename Device>
static stream_offset static std::streampos
seek( Filter&, Device*, stream_offset, seek( Filter&, Device*, stream_offset,
BOOST_IOS::seekdir, BOOST_IOS::openmode, any_tag ) BOOST_IOS::seekdir, BOOST_IOS::openmode, any_tag )
{ throw cant_seek(); } { throw cant_seek(); }
template<typename Filter, typename Device> template<typename Filter, typename Device>
static stream_offset static std::streampos
seek( Filter& f, Device* dev, stream_offset off, seek( Filter& f, Device* dev, stream_offset off,
BOOST_IOS::seekdir way, BOOST_IOS::openmode which, BOOST_IOS::seekdir way, BOOST_IOS::openmode which,
random_access tag ) random_access tag )
@ -216,14 +216,14 @@ struct flt_wrapper_impl<any_tag> {
} }
template<typename Filter, typename Device> template<typename Filter, typename Device>
static stream_offset static std::streampos
seek( Filter& f, Device* dev, stream_offset off, seek( Filter& f, Device* dev, stream_offset off,
BOOST_IOS::seekdir way, BOOST_IOS::openmode which, BOOST_IOS::seekdir way, BOOST_IOS::openmode which,
random_access, any_tag ) random_access, any_tag )
{ return f.seek(*dev, off, way); } { return f.seek(*dev, off, way); }
template<typename Filter, typename Device> template<typename Filter, typename Device>
static stream_offset static std::streampos
seek( Filter& f, Device* dev, stream_offset off, seek( Filter& f, Device* dev, stream_offset off,
BOOST_IOS::seekdir way, BOOST_IOS::openmode which, BOOST_IOS::seekdir way, BOOST_IOS::openmode which,
random_access, two_sequence ) random_access, two_sequence )

View File

@ -48,7 +48,7 @@ public:
std::streamsize read(char_type* s, std::streamsize n); std::streamsize read(char_type* s, std::streamsize n);
std::streamsize write(const char_type* s, std::streamsize n); std::streamsize write(const char_type* s, std::streamsize n);
stream_offset seek( stream_offset off, BOOST_IOS::seekdir way, std::streampos seek( stream_offset off, BOOST_IOS::seekdir way,
BOOST_IOS::openmode which = BOOST_IOS::openmode which =
BOOST_IOS::in | BOOST_IOS::out ); BOOST_IOS::in | BOOST_IOS::out );
#if !BOOST_WORKAROUND(BOOST_MSVC, < 1300) #if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
@ -66,11 +66,11 @@ public:
{ return iostreams::write(t_, snk, s, n); } { return iostreams::write(t_, snk, s, n); }
template<typename Device> template<typename Device>
stream_offset seek(Device& dev, stream_offset off, BOOST_IOS::seekdir way) std::streampos seek(Device& dev, stream_offset off, BOOST_IOS::seekdir way)
{ return iostreams::seek(t_, dev, off, way); } { return iostreams::seek(t_, dev, off, way); }
template<typename Device> template<typename Device>
stream_offset seek( Device& dev, stream_offset off, std::streampos seek( Device& dev, stream_offset off,
BOOST_IOS::seekdir way, BOOST_IOS::openmode which ) BOOST_IOS::seekdir way, BOOST_IOS::openmode which )
{ return iostreams::seek(t_, dev, off, way, which); } { return iostreams::seek(t_, dev, off, way, which); }
@ -102,7 +102,7 @@ std::streamsize mode_adapter<Mode, T>::write
{ return boost::iostreams::write(t_, s, n); } { return boost::iostreams::write(t_, s, n); }
template<typename Mode, typename T> template<typename Mode, typename T>
stream_offset mode_adapter<Mode, T>::seek std::streampos mode_adapter<Mode, T>::seek
(stream_offset off, BOOST_IOS::seekdir way, BOOST_IOS::openmode which) (stream_offset off, BOOST_IOS::seekdir way, BOOST_IOS::openmode which)
{ return boost::iostreams::seek(t_, off, way, which); } { return boost::iostreams::seek(t_, off, way, which); }

View File

@ -44,7 +44,7 @@ public:
} }
return result; return result;
} }
stream_offset seek( stream_offset off, BOOST_IOS::seekdir way, std::streampos seek( stream_offset off, BOOST_IOS::seekdir way,
BOOST_IOS::openmode which = BOOST_IOS::openmode which =
BOOST_IOS::in | BOOST_IOS::out ) BOOST_IOS::in | BOOST_IOS::out )
{ return iostreams::seek(device_, off, way, which); } { return iostreams::seek(device_, off, way, which); }

View File

@ -62,7 +62,7 @@ public:
range_adapter(iterator first, iterator last); range_adapter(iterator first, iterator last);
std::streamsize read(char_type* s, std::streamsize n); std::streamsize read(char_type* s, std::streamsize n);
std::streamsize write(const char_type* s, std::streamsize n); std::streamsize write(const char_type* s, std::streamsize n);
stream_offset seek(stream_offset off, BOOST_IOS::seekdir way); std::streampos seek(stream_offset off, BOOST_IOS::seekdir way);
private: private:
iterator first_, cur_, last_; iterator first_, cur_, last_;
}; };
@ -89,11 +89,11 @@ inline std::streamsize range_adapter<Mode, Range>::write
template<typename Mode, typename Range> template<typename Mode, typename Range>
stream_offset range_adapter<Mode, Range>::seek std::streampos range_adapter<Mode, Range>::seek
(stream_offset off, BOOST_IOS::seekdir way) (stream_offset off, BOOST_IOS::seekdir way)
{ {
impl::seek(first_, cur_, last_, off, way); impl::seek(first_, cur_, last_, off, way);
return static_cast<stream_offset>(cur_ - first_); return offset_to_position(cur_ - first_);
} }
//------------------Implementation of range_adapter_impl----------------------// //------------------Implementation of range_adapter_impl----------------------//

View File

@ -47,10 +47,7 @@ template<typename Mode, typename Ch, typename T>
struct resolve_traits { struct resolve_traits {
typedef typename typedef typename
mpl::if_< mpl::if_<
mpl::and_< boost::detail::is_incrementable<T>,
boost::detail::is_incrementable<T>, // Must come first
is_dereferenceable<T> // for CW 9.[0-4]
>,
output_iterator_adapter<Mode, Ch, T>, output_iterator_adapter<Mode, Ch, T>,
const T& const T&
>::type type; >::type type;
@ -163,10 +160,7 @@ struct resolve_traits {
mode_adapter<Mode, T>, mode_adapter<Mode, T>,
is_iterator_range<T>, is_iterator_range<T>,
range_adapter<Mode, T>, range_adapter<Mode, T>,
mpl::and_<
is_dereferenceable<T>, is_dereferenceable<T>,
boost::detail::is_incrementable<T>
>,
output_iterator_adapter<Mode, Ch, T>, output_iterator_adapter<Mode, Ch, T>,
is_array<T>, is_array<T>,
array_adapter<Mode, T>, array_adapter<Mode, T>,

View File

@ -24,6 +24,7 @@
#include <boost/iostreams/detail/streambuf/linked_streambuf.hpp> #include <boost/iostreams/detail/streambuf/linked_streambuf.hpp>
#include <boost/iostreams/detail/error.hpp> #include <boost/iostreams/detail/error.hpp>
#include <boost/iostreams/operations.hpp> #include <boost/iostreams/operations.hpp>
#include <boost/iostreams/positioning.hpp>
#include <boost/iostreams/traits.hpp> #include <boost/iostreams/traits.hpp>
// Must come last. // Must come last.
@ -52,7 +53,7 @@ private:
) streambuf_type; ) streambuf_type;
public: // stream needs access. public: // stream needs access.
void open(const T& t, int buffer_size, int pback_size); void open(const T& t, int buffer_size, int pback_size);
bool is_open(); bool is_open() const;
void close(); void close();
bool auto_close() const { return auto_close_; } bool auto_close() const { return auto_close_; }
void set_auto_close(bool close) { auto_close_ = close; } void set_auto_close(bool close) { auto_close_ = close; }
@ -85,7 +86,7 @@ protected:
BOOST_IOS::openmode which ); BOOST_IOS::openmode which );
pos_type seekpos(pos_type sp, BOOST_IOS::openmode which); pos_type seekpos(pos_type sp, BOOST_IOS::openmode which);
private: private:
pos_type seek_impl( off_type off, BOOST_IOS::seekdir way, pos_type seek_impl( stream_offset off, BOOST_IOS::seekdir way,
BOOST_IOS::openmode which ); BOOST_IOS::openmode which );
void init_input(any_tag) { } void init_input(any_tag) { }
void init_input(input); void init_input(input);
@ -118,7 +119,8 @@ void direct_streambuf<T, Tr>::open(const T& t, int, int)
} }
template<typename T, typename Tr> template<typename T, typename Tr>
bool direct_streambuf<T, Tr>::is_open() { return ibeg_ != 0 && !obeg_ != 0; } bool direct_streambuf<T, Tr>::is_open() const
{ return ibeg_ != 0 && !obeg_ != 0; }
template<typename T, typename Tr> template<typename T, typename Tr>
void direct_streambuf<T, Tr>::close() void direct_streambuf<T, Tr>::close()
@ -185,7 +187,10 @@ template<typename T, typename Tr>
inline typename direct_streambuf<T, Tr>::pos_type inline typename direct_streambuf<T, Tr>::pos_type
direct_streambuf<T, Tr>::seekpos direct_streambuf<T, Tr>::seekpos
(pos_type sp, BOOST_IOS::openmode) (pos_type sp, BOOST_IOS::openmode)
{ return seek_impl(sp, BOOST_IOS::beg, BOOST_IOS::in | BOOST_IOS::out); } {
return seek_impl( position_to_offset(sp), BOOST_IOS::beg,
BOOST_IOS::in | BOOST_IOS::out );
}
template<typename T, typename Tr> template<typename T, typename Tr>
void direct_streambuf<T, Tr>::close(BOOST_IOS::openmode which) void direct_streambuf<T, Tr>::close(BOOST_IOS::openmode which)
@ -204,13 +209,13 @@ void direct_streambuf<T, Tr>::close(BOOST_IOS::openmode which)
template<typename T, typename Tr> template<typename T, typename Tr>
typename direct_streambuf<T, Tr>::pos_type direct_streambuf<T, Tr>::seek_impl typename direct_streambuf<T, Tr>::pos_type direct_streambuf<T, Tr>::seek_impl
(off_type off, BOOST_IOS::seekdir way, BOOST_IOS::openmode which) (stream_offset off, BOOST_IOS::seekdir way, BOOST_IOS::openmode which)
{ {
using namespace std; using namespace std;
BOOST_IOS::openmode both = BOOST_IOS::in | BOOST_IOS::out; BOOST_IOS::openmode both = BOOST_IOS::in | BOOST_IOS::out;
if (two_head() && (which & both) == both) if (two_head() && (which & both) == both)
throw bad_seek(); throw bad_seek();
off_type result = -1; stream_offset result = -1;
bool one = one_head(); bool one = one_head();
if (one && (pptr() != 0 || gptr()== 0)) if (one && (pptr() != 0 || gptr()== 0))
init_get_area(); // Switch to input mode, for code reuse. init_get_area(); // Switch to input mode, for code reuse.
@ -242,7 +247,7 @@ typename direct_streambuf<T, Tr>::pos_type direct_streambuf<T, Tr>::seek_impl
pbump(static_cast<int>(next - (pptr() - obeg_))); pbump(static_cast<int>(next - (pptr() - obeg_)));
result = next; result = next;
} }
return result; return offset_to_position(result);
} }
template<typename T, typename Tr> template<typename T, typename Tr>

View File

@ -118,7 +118,7 @@ private:
void sync_impl(); void sync_impl();
void close_impl(BOOST_IOS::openmode); void close_impl(BOOST_IOS::openmode);
enum { enum flag_type {
f_open = 1, f_open = 1,
f_input_closed = f_open << 1, f_input_closed = f_open << 1,
f_output_closed = f_input_closed << 1, f_output_closed = f_input_closed << 1,
@ -328,7 +328,10 @@ template<typename T, typename Tr, typename Alloc, typename Mode>
inline typename indirect_streambuf<T, Tr, Alloc, Mode>::pos_type inline typename indirect_streambuf<T, Tr, Alloc, Mode>::pos_type
indirect_streambuf<T, Tr, Alloc, Mode>::seekpos indirect_streambuf<T, Tr, Alloc, Mode>::seekpos
(pos_type sp, BOOST_IOS::openmode) (pos_type sp, BOOST_IOS::openmode)
{ return seek_impl(sp, BOOST_IOS::beg, BOOST_IOS::in | BOOST_IOS::out); } {
return seek_impl( position_to_offset(sp), BOOST_IOS::beg,
BOOST_IOS::in | BOOST_IOS::out );
}
template<typename T, typename Tr, typename Alloc, typename Mode> template<typename T, typename Tr, typename Alloc, typename Mode>
typename indirect_streambuf<T, Tr, Alloc, Mode>::pos_type typename indirect_streambuf<T, Tr, Alloc, Mode>::pos_type

View File

@ -51,7 +51,7 @@ public:
BOOST_IOS::in | BOOST_IOS::out ); BOOST_IOS::in | BOOST_IOS::out );
std::streamsize read(char_type* s, std::streamsize n); std::streamsize read(char_type* s, std::streamsize n);
std::streamsize write(const char_type* s, std::streamsize n); std::streamsize write(const char_type* s, std::streamsize n);
stream_offset seek( stream_offset off, BOOST_IOS::seekdir way, std::streampos seek( stream_offset off, BOOST_IOS::seekdir way,
BOOST_IOS::openmode which = BOOST_IOS::openmode which =
BOOST_IOS::in | BOOST_IOS::out ); BOOST_IOS::in | BOOST_IOS::out );
void open( const std::string& path, void open( const std::string& path,
@ -154,7 +154,7 @@ inline std::streamsize basic_file<Ch>::write
{ return pimpl_->file_.sputn(s, n); } { return pimpl_->file_.sputn(s, n); }
template<typename Ch> template<typename Ch>
stream_offset basic_file<Ch>::seek std::streampos basic_file<Ch>::seek
( stream_offset off, BOOST_IOS::seekdir way, ( stream_offset off, BOOST_IOS::seekdir way,
BOOST_IOS::openmode ) BOOST_IOS::openmode )
{ return iostreams::seek(pimpl_->file_, off, way); } { return iostreams::seek(pimpl_->file_, off, way); }

View File

@ -63,7 +63,7 @@ public:
bool is_open() const { return pimpl_->flags_ != 0; } bool is_open() const { return pimpl_->flags_ != 0; }
std::streamsize read(char_type* s, std::streamsize n); std::streamsize read(char_type* s, std::streamsize n);
std::streamsize write(const char_type* s, std::streamsize n); std::streamsize write(const char_type* s, std::streamsize n);
stream_offset seek(stream_offset off, BOOST_IOS::seekdir way); std::streampos seek(stream_offset off, BOOST_IOS::seekdir way);
void close(); void close();
private: private:
struct impl { struct impl {

View File

@ -137,7 +137,7 @@ private:
//------------------Definition of mapped_file---------------------------------// //------------------Definition of mapped_file---------------------------------//
class mapped_file { class BOOST_IOSTREAMS_DECL mapped_file {
private: private:
typedef mapped_file_source delegate_type; typedef mapped_file_source delegate_type;
delegate_type delegate_; delegate_type delegate_;
@ -202,7 +202,7 @@ public:
static int alignment() { return mapped_file_source::alignment(); } static int alignment() { return mapped_file_source::alignment(); }
}; };
struct mapped_file_sink : private mapped_file { struct BOOST_IOSTREAMS_DECL mapped_file_sink : private mapped_file {
friend struct operations<mapped_file_sink>; friend struct operations<mapped_file_sink>;
typedef char char_type; typedef char char_type;
struct category struct category

View File

@ -30,7 +30,7 @@ public:
{ }; { };
std::streamsize read(Ch*, std::streamsize) { return 0; } std::streamsize read(Ch*, std::streamsize) { return 0; }
std::streamsize write(const Ch*, std::streamsize n) { return n; } std::streamsize write(const Ch*, std::streamsize n) { return n; }
stream_offset seek( stream_offset, BOOST_IOS::seekdir, std::streampos seek( stream_offset, BOOST_IOS::seekdir,
BOOST_IOS::openmode = BOOST_IOS::openmode =
BOOST_IOS::in | BOOST_IOS::out ) BOOST_IOS::in | BOOST_IOS::out )
{ return -1; } { return -1; }

View File

@ -234,15 +234,21 @@ public:
template<typename Sink> template<typename Sink>
void close(Sink& snk, BOOST_IOS::openmode m) void close(Sink& snk, BOOST_IOS::openmode m)
{ {
namespace io = boost::iostreams;
if (m & BOOST_IOS::out) { if (m & BOOST_IOS::out) {
// Close zlib compressor. // Close zlib compressor.
base_type::close(snk, BOOST_IOS::out); base_type::close(snk, BOOST_IOS::out);
if (flags_ & f_header_done) {
// Write final fields of gzip file format. // Write final fields of gzip file format.
write_long(this->crc(), snk); write_long(this->crc(), snk);
write_long(this->total_in(), snk); write_long(this->total_in(), snk);
} }
}
#if BOOST_WORKAROUND(__GNUC__, == 2) && defined(__STL_CONFIG_H) || \ #if BOOST_WORKAROUND(__GNUC__, == 2) && defined(__STL_CONFIG_H) || \
BOOST_WORKAROUND(BOOST_DINKUMWARE_STDLIB, == 1) \ BOOST_WORKAROUND(BOOST_DINKUMWARE_STDLIB, == 1) \
/**/ /**/
@ -267,7 +273,7 @@ private:
boost::iostreams::put(next, static_cast<char>(0xFF & (n >> 24))); boost::iostreams::put(next, static_cast<char>(0xFF & (n >> 24)));
} }
enum { enum flag_type {
f_header_done = 1, f_header_done = 1,
f_body_done = f_header_done << 1, f_body_done = f_header_done << 1,
f_footer_done = f_body_done << 1 f_footer_done = f_body_done << 1
@ -456,7 +462,7 @@ private:
if (static_cast<int>(read_uint32(rng, gzip::bad_footer)) != this->total_out()) if (static_cast<int>(read_uint32(rng, gzip::bad_footer)) != this->total_out())
throw gzip_error(gzip::bad_length); throw gzip_error(gzip::bad_length);
} }
enum { enum flag_type {
f_header_read = 1, f_header_read = 1,
f_footer_read = f_header_read << 1, f_footer_read = f_header_read << 1,
f_text = f_footer_read << 1 f_text = f_footer_read << 1

View File

@ -332,7 +332,7 @@ zlib_compressor_impl<Alloc>::zlib_compressor_impl(const zlib_params& p)
template<typename Alloc> template<typename Alloc>
zlib_compressor_impl<Alloc>::~zlib_compressor_impl() zlib_compressor_impl<Alloc>::~zlib_compressor_impl()
{ /*reset(true, false);*/ } { reset(true, false); }
template<typename Alloc> template<typename Alloc>
bool zlib_compressor_impl<Alloc>::filter bool zlib_compressor_impl<Alloc>::filter
@ -357,7 +357,7 @@ zlib_decompressor_impl<Alloc>::zlib_decompressor_impl(const zlib_params& p)
template<typename Alloc> template<typename Alloc>
zlib_decompressor_impl<Alloc>::~zlib_decompressor_impl() zlib_decompressor_impl<Alloc>::~zlib_decompressor_impl()
{ /*reset(false, false);*/ } { reset(false, false); }
template<typename Alloc> template<typename Alloc>
zlib_decompressor_impl<Alloc>::zlib_decompressor_impl(int window_bits) zlib_decompressor_impl<Alloc>::zlib_decompressor_impl(int window_bits)

View File

@ -76,8 +76,8 @@ namespace std
static BOOST_LLT denorm_min() throw() { return 0; }; static BOOST_LLT denorm_min() throw() { return 0; };
BOOST_STATIC_CONSTANT(bool, is_iec559 = false); BOOST_STATIC_CONSTANT(bool, is_iec559 = false);
BOOST_STATIC_CONSTANT(bool, is_bounded = false); BOOST_STATIC_CONSTANT(bool, is_bounded = true);
BOOST_STATIC_CONSTANT(bool, is_modulo = false); BOOST_STATIC_CONSTANT(bool, is_modulo = true);
BOOST_STATIC_CONSTANT(bool, traps = false); BOOST_STATIC_CONSTANT(bool, traps = false);
BOOST_STATIC_CONSTANT(bool, tinyness_before = false); BOOST_STATIC_CONSTANT(bool, tinyness_before = false);
@ -129,8 +129,8 @@ namespace std
static BOOST_ULLT denorm_min() throw() { return 0; }; static BOOST_ULLT denorm_min() throw() { return 0; };
BOOST_STATIC_CONSTANT(bool, is_iec559 = false); BOOST_STATIC_CONSTANT(bool, is_iec559 = false);
BOOST_STATIC_CONSTANT(bool, is_bounded = false); BOOST_STATIC_CONSTANT(bool, is_bounded = true);
BOOST_STATIC_CONSTANT(bool, is_modulo = false); BOOST_STATIC_CONSTANT(bool, is_modulo = true);
BOOST_STATIC_CONSTANT(bool, traps = false); BOOST_STATIC_CONSTANT(bool, traps = false);
BOOST_STATIC_CONSTANT(bool, tinyness_before = false); BOOST_STATIC_CONSTANT(bool, tinyness_before = false);
@ -141,3 +141,4 @@ namespace std
#endif #endif
#endif #endif

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/always.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:41 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.5 $ // $Revision: 24874 $
#include <boost/mpl/aux_/preprocessor/def_params_tail.hpp> #include <boost/mpl/aux_/preprocessor/def_params_tail.hpp>
#include <boost/mpl/aux_/na.hpp> #include <boost/mpl/aux_/na.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/and.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:41 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.5 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/use_preprocessed.hpp> #include <boost/mpl/aux_/config/use_preprocessed.hpp>

View File

@ -14,9 +14,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/apply.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:41 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.17 $ // $Revision: 24874 $
#if !defined(BOOST_MPL_PREPROCESSING_MODE) #if !defined(BOOST_MPL_PREPROCESSING_MODE)
# include <boost/mpl/apply_fwd.hpp> # include <boost/mpl/apply_fwd.hpp>

View File

@ -14,9 +14,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/apply_fwd.hpp,v $ // $Source$
// $Date: 2005/08/25 16:27:21 $ // $Date: 2005-08-25 18:27:28 +0200 (Thu, 25 Aug 2005) $
// $Revision: 1.3 $ // $Revision: 30670 $
#if !defined(BOOST_MPL_PREPROCESSING_MODE) #if !defined(BOOST_MPL_PREPROCESSING_MODE)
# include <boost/mpl/aux_/na.hpp> # include <boost/mpl/aux_/na.hpp>

View File

@ -14,9 +14,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/apply_wrap.hpp,v $ // $Source$
// $Date: 2004/09/03 15:56:55 $ // $Date: 2004-09-03 17:56:59 +0200 (Fri, 03 Sep 2004) $
// $Revision: 1.3 $ // $Revision: 24892 $
#if !defined(BOOST_MPL_PREPROCESSING_MODE) #if !defined(BOOST_MPL_PREPROCESSING_MODE)
# include <boost/mpl/aux_/arity.hpp> # include <boost/mpl/aux_/arity.hpp>

View File

@ -15,9 +15,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/arg.hpp,v $ // $Source$
// $Date: 2004/09/21 13:48:07 $ // $Date: 2004-09-21 15:48:10 +0200 (Tue, 21 Sep 2004) $
// $Revision: 1.12 $ // $Revision: 25308 $
#if !defined(BOOST_MPL_PREPROCESSING_MODE) #if !defined(BOOST_MPL_PREPROCESSING_MODE)
# include <boost/mpl/arg_fwd.hpp> # include <boost/mpl/arg_fwd.hpp>

View File

@ -11,9 +11,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/arg_fwd.hpp,v $ // $Source$
// $Date: 2004/09/28 13:56:58 $ // $Date: 2004-09-28 15:56:59 +0200 (Tue, 28 Sep 2004) $
// $Revision: 1.6 $ // $Revision: 25453 $
#include <boost/mpl/aux_/adl_barrier.hpp> #include <boost/mpl/aux_/adl_barrier.hpp>
#include <boost/mpl/aux_/nttp_decl.hpp> #include <boost/mpl/aux_/nttp_decl.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/assert.hpp,v $ // $Source$
// $Date: 2006/11/10 21:31:19 $ // $Date: 2006-11-10 22:31:19 +0100 (Fri, 10 Nov 2006) $
// $Revision: 1.13.14.6 $ // $Revision: 35997 $
#include <boost/mpl/not.hpp> #include <boost/mpl/not.hpp>
#include <boost/mpl/aux_/value_wknd.hpp> #include <boost/mpl/aux_/value_wknd.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/adl_barrier.hpp,v $ // $Source$
// $Date: 2004/09/28 13:56:59 $ // $Date: 2004-09-28 15:56:59 +0200 (Tue, 28 Sep 2004) $
// $Revision: 1.4 $ // $Revision: 25453 $
#include <boost/mpl/aux_/config/adl.hpp> #include <boost/mpl/aux_/config/adl.hpp>
#include <boost/mpl/aux_/config/gcc.hpp> #include <boost/mpl/aux_/config/gcc.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/arg_typedef.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:43 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.3 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/lambda.hpp> #include <boost/mpl/aux_/config/lambda.hpp>
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/arity.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:43 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.6 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/dtp.hpp> #include <boost/mpl/aux_/config/dtp.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/arity_spec.hpp,v $ // $Source$
// $Date: 2004/11/28 02:04:02 $ // $Date: 2004-11-28 03:04:02 +0100 (Sun, 28 Nov 2004) $
// $Revision: 1.7 $ // $Revision: 26326 $
#include <boost/mpl/int.hpp> #include <boost/mpl/int.hpp>
#include <boost/mpl/limits/arity.hpp> #include <boost/mpl/limits/arity.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/common_name_wknd.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:43 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.4 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/adl.hpp,v $ // $Source$
// $Date: 2004/09/16 14:08:47 $ // $Date: 2004-09-16 16:09:12 +0200 (Thu, 16 Sep 2004) $
// $Revision: 1.1 $ // $Revision: 25148 $
#include <boost/mpl/aux_/config/msvc.hpp> #include <boost/mpl/aux_/config/msvc.hpp>
#include <boost/mpl/aux_/config/intel.hpp> #include <boost/mpl/aux_/config/intel.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/arrays.hpp,v $ // $Source$
// $Date: 2004/09/03 15:56:55 $ // $Date: 2004-09-03 17:56:59 +0200 (Fri, 03 Sep 2004) $
// $Revision: 1.3 $ // $Revision: 24892 $
#include <boost/mpl/aux_/config/msvc.hpp> #include <boost/mpl/aux_/config/msvc.hpp>
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -11,9 +11,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/bind.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.6 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/msvc.hpp> #include <boost/mpl/aux_/config/msvc.hpp>
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/compiler.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.9 $ // $Revision: 24874 $
#if !defined(BOOST_MPL_CFG_COMPILER_DIR) #if !defined(BOOST_MPL_CFG_COMPILER_DIR)

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/ctps.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.5 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>
#include <boost/config.hpp> #include <boost/config.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/dtp.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.9 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/eti.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.6 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/msvc.hpp> #include <boost/mpl/aux_/config/msvc.hpp>
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/gcc.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.2 $ // $Revision: 24874 $
#if defined(__GNUC__) && !defined(__EDG_VERSION__) #if defined(__GNUC__) && !defined(__EDG_VERSION__)
# define BOOST_MPL_CFG_GCC ((__GNUC__ << 8) | __GNUC_MINOR__) # define BOOST_MPL_CFG_GCC ((__GNUC__ << 8) | __GNUC_MINOR__)

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/has_apply.hpp,v $ // $Source$
// $Date: 2004/09/13 06:10:10 $ // $Date: 2004-09-13 08:10:10 +0200 (Mon, 13 Sep 2004) $
// $Revision: 1.2 $ // $Revision: 25029 $
#include <boost/mpl/aux_/config/has_xxx.hpp> #include <boost/mpl/aux_/config/has_xxx.hpp>
#include <boost/mpl/aux_/config/msvc.hpp> #include <boost/mpl/aux_/config/msvc.hpp>

View File

@ -11,9 +11,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/has_xxx.hpp,v $ // $Source$
// $Date: 2004/09/03 15:56:56 $ // $Date: 2004-09-03 17:56:59 +0200 (Fri, 03 Sep 2004) $
// $Revision: 1.3 $ // $Revision: 24892 $
#include <boost/mpl/aux_/config/overload_resolution.hpp> #include <boost/mpl/aux_/config/overload_resolution.hpp>
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/integral.hpp,v $ // $Source$
// $Date: 2004/09/07 08:51:32 $ // $Date: 2004-09-07 10:53:22 +0200 (Tue, 07 Sep 2004) $
// $Revision: 1.1 $ // $Revision: 24947 $
#include <boost/mpl/aux_/config/msvc.hpp> #include <boost/mpl/aux_/config/msvc.hpp>
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/intel.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.1 $ // $Revision: 24874 $
// BOOST_INTEL_CXX_VERSION is defined here: // BOOST_INTEL_CXX_VERSION is defined here:

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/lambda.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.3 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/ttp.hpp> #include <boost/mpl/aux_/config/ttp.hpp>
#include <boost/mpl/aux_/config/ctps.hpp> #include <boost/mpl/aux_/config/ctps.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/msvc.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.3 $ // $Revision: 24874 $
// BOOST_MSVC is defined here: // BOOST_MSVC is defined here:

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/msvc_typename.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.4 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/msvc.hpp> #include <boost/mpl/aux_/config/msvc.hpp>
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/nttp.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.4 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/msvc.hpp> #include <boost/mpl/aux_/config/msvc.hpp>
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/overload_resolution.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.9 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/preprocessor.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.6 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/static_constant.hpp,v $ // $Source$
// $Date: 2004/09/07 08:51:32 $ // $Date: 2004-09-07 10:53:22 +0200 (Tue, 07 Sep 2004) $
// $Revision: 1.4 $ // $Revision: 24947 $
#if !defined(BOOST_MPL_PREPROCESSING_MODE) #if !defined(BOOST_MPL_PREPROCESSING_MODE)
// BOOST_STATIC_CONSTANT is defined here: // BOOST_STATIC_CONSTANT is defined here:

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/ttp.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.7 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/msvc.hpp> #include <boost/mpl/aux_/config/msvc.hpp>
#include <boost/mpl/aux_/config/gcc.hpp> #include <boost/mpl/aux_/config/gcc.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/use_preprocessed.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.7 $ // $Revision: 24874 $
// #define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS // #define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/workaround.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:45 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.3 $ // $Revision: 24874 $
#include <boost/detail/workaround.hpp> #include <boost/detail/workaround.hpp>

View File

@ -14,9 +14,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/full_lambda.hpp,v $ // $Source$
// $Date: 2004/09/04 01:10:19 $ // $Date: 2004-09-04 03:10:23 +0200 (Sat, 04 Sep 2004) $
// $Revision: 1.14 $ // $Revision: 24896 $
#if !defined(BOOST_MPL_PREPROCESSING_MODE) #if !defined(BOOST_MPL_PREPROCESSING_MODE)
# include <boost/mpl/lambda_fwd.hpp> # include <boost/mpl/lambda_fwd.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/has_apply.hpp,v $ // $Source$
// $Date: 2004/09/03 15:56:55 $ // $Date: 2004-09-03 17:56:59 +0200 (Fri, 03 Sep 2004) $
// $Revision: 1.1 $ // $Revision: 24892 $
#include <boost/mpl/has_xxx.hpp> #include <boost/mpl/has_xxx.hpp>
#include <boost/mpl/aux_/config/has_apply.hpp> #include <boost/mpl/aux_/config/has_apply.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/has_type.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:43 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.4 $ // $Revision: 24874 $
#include <boost/mpl/has_xxx.hpp> #include <boost/mpl/has_xxx.hpp>

View File

@ -9,9 +9,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/include_preprocessed.hpp,v $ // $Source$
// $Date: 2006/11/09 00:46:57 $ // $Date: 2006-11-09 01:46:57 +0100 (Thu, 09 Nov 2006) $
// $Revision: 1.5.14.1 $ // $Revision: 35931 $
#include <boost/mpl/aux_/config/compiler.hpp> #include <boost/mpl/aux_/config/compiler.hpp>
#include <boost/mpl/aux_/config/preprocessor.hpp> #include <boost/mpl/aux_/config/preprocessor.hpp>

View File

@ -7,9 +7,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/integral_wrapper.hpp,v $ // $Source$
// $Date: 2006/11/08 21:44:30 $ // $Date: 2006-11-08 22:44:30 +0100 (Wed, 08 Nov 2006) $
// $Revision: 1.10.14.1 $ // $Revision: 35926 $
// NO INCLUDE GUARDS, THE HEADER IS INTENDED FOR MULTIPLE INCLUSION! // NO INCLUDE GUARDS, THE HEADER IS INTENDED FOR MULTIPLE INCLUSION!

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/is_msvc_eti_arg.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:43 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.4 $ // $Revision: 24874 $
#include <boost/mpl/aux_/yes_no.hpp> #include <boost/mpl/aux_/yes_no.hpp>
#include <boost/mpl/aux_/config/eti.hpp> #include <boost/mpl/aux_/config/eti.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/lambda_arity_param.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:43 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.5 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/ttp.hpp> #include <boost/mpl/aux_/config/ttp.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/lambda_spec.hpp,v $ // $Source$
// $Date: 2007/01/29 07:28:45 $ // $Date: 2007-01-29 08:28:45 +0100 (Mon, 29 Jan 2007) $
// $Revision: 1.8.14.1 $ // $Revision: 36830 $
#include <boost/mpl/void.hpp> #include <boost/mpl/void.hpp>
#include <boost/mpl/lambda_fwd.hpp> #include <boost/mpl/lambda_fwd.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/lambda_support.hpp,v $ // $Source$
// $Date: 2005/08/25 16:27:21 $ // $Date: 2005-08-25 18:27:28 +0200 (Thu, 25 Aug 2005) $
// $Revision: 1.13 $ // $Revision: 30670 $
#include <boost/mpl/aux_/config/lambda.hpp> #include <boost/mpl/aux_/config/lambda.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/msvc_eti_base.hpp,v $ // $Source$
// $Date: 2004/11/28 01:37:05 $ // $Date: 2004-11-28 02:39:23 +0100 (Sun, 28 Nov 2004) $
// $Revision: 1.7 $ // $Revision: 26324 $
#include <boost/mpl/aux_/is_msvc_eti_arg.hpp> #include <boost/mpl/aux_/is_msvc_eti_arg.hpp>
#include <boost/mpl/aux_/config/eti.hpp> #include <boost/mpl/aux_/config/eti.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/msvc_never_true.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:43 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.5 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/msvc.hpp> #include <boost/mpl/aux_/config/msvc.hpp>
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/na.hpp,v $ // $Source$
// $Date: 2004/11/28 01:37:30 $ // $Date: 2004-11-28 02:39:23 +0100 (Sun, 28 Nov 2004) $
// $Revision: 1.6 $ // $Revision: 26324 $
#include <boost/mpl/bool.hpp> #include <boost/mpl/bool.hpp>
#include <boost/mpl/aux_/na_fwd.hpp> #include <boost/mpl/aux_/na_fwd.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/na_assert.hpp,v $ // $Source$
// $Date: 2005/07/13 13:13:38 $ // $Date: 2005-07-13 15:13:38 +0200 (Wed, 13 Jul 2005) $
// $Revision: 1.6 $ // $Revision: 30043 $
#include <boost/mpl/aux_/na.hpp> #include <boost/mpl/aux_/na.hpp>
#include <boost/mpl/aux_/config/msvc.hpp> #include <boost/mpl/aux_/config/msvc.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/na_fwd.hpp,v $ // $Source$
// $Date: 2004/11/28 01:37:30 $ // $Date: 2004-11-28 02:39:23 +0100 (Sun, 28 Nov 2004) $
// $Revision: 1.2 $ // $Revision: 26324 $
#include <boost/mpl/aux_/adl_barrier.hpp> #include <boost/mpl/aux_/adl_barrier.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/na_spec.hpp,v $ // $Source$
// $Date: 2004/11/28 01:38:15 $ // $Date: 2004-11-28 02:39:23 +0100 (Sun, 28 Nov 2004) $
// $Revision: 1.3 $ // $Revision: 26324 $
#if !defined(BOOST_MPL_PREPROCESSING_MODE) #if !defined(BOOST_MPL_PREPROCESSING_MODE)
# include <boost/mpl/lambda_fwd.hpp> # include <boost/mpl/lambda_fwd.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/nested_type_wknd.hpp,v $ // $Source$
// $Date: 2004/09/28 13:56:59 $ // $Date: 2004-09-28 15:56:59 +0200 (Tue, 28 Sep 2004) $
// $Revision: 1.7 $ // $Revision: 25453 $
#include <boost/mpl/aux_/config/gcc.hpp> #include <boost/mpl/aux_/config/gcc.hpp>
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/nttp_decl.hpp,v $ // $Source$
// $Date: 2004/12/16 22:43:05 $ // $Date: 2004-12-16 23:43:05 +0100 (Thu, 16 Dec 2004) $
// $Revision: 1.2 $ // $Revision: 26536 $
#include <boost/mpl/aux_/config/nttp.hpp> #include <boost/mpl/aux_/config/nttp.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/preprocessor/def_params_tail.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:56 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.6 $ // $Revision: 24874 $
#include <boost/mpl/limits/arity.hpp> #include <boost/mpl/limits/arity.hpp>
#include <boost/mpl/aux_/config/dtp.hpp> #include <boost/mpl/aux_/config/dtp.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/preprocessor/default_params.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:56 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.5 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/preprocessor.hpp> #include <boost/mpl/aux_/config/preprocessor.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/preprocessor/enum.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:56 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.5 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/preprocessor.hpp> #include <boost/mpl/aux_/config/preprocessor.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/preprocessor/filter_params.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:56 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.4 $ // $Revision: 24874 $
#define BOOST_MPL_PP_FILTER_PARAMS_0(p1,p2,p3,p4,p5,p6,p7,p8,p9) #define BOOST_MPL_PP_FILTER_PARAMS_0(p1,p2,p3,p4,p5,p6,p7,p8,p9)
#define BOOST_MPL_PP_FILTER_PARAMS_1(p1,p2,p3,p4,p5,p6,p7,p8,p9) p1 #define BOOST_MPL_PP_FILTER_PARAMS_1(p1,p2,p3,p4,p5,p6,p7,p8,p9) p1

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/preprocessor/params.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:56 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.5 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/preprocessor.hpp> #include <boost/mpl/aux_/config/preprocessor.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/preprocessor/sub.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:56 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.7 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/preprocessor.hpp> #include <boost/mpl/aux_/config/preprocessor.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/preprocessor/tuple.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:56 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.5 $ // $Revision: 24874 $
#define BOOST_MPL_PP_TUPLE_11_ELEM_0(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e0 #define BOOST_MPL_PP_TUPLE_11_ELEM_0(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e0
#define BOOST_MPL_PP_TUPLE_11_ELEM_1(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e1 #define BOOST_MPL_PP_TUPLE_11_ELEM_1(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e1

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/static_cast.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:44 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.3 $ // $Revision: 24874 $
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>

View File

@ -14,9 +14,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/template_arity.hpp,v $ // $Source$
// $Date: 2004/09/07 12:24:48 $ // $Date: 2004-09-07 14:24:50 +0200 (Tue, 07 Sep 2004) $
// $Revision: 1.11 $ // $Revision: 24957 $
#include <boost/mpl/aux_/config/ttp.hpp> #include <boost/mpl/aux_/config/ttp.hpp>
#include <boost/mpl/aux_/config/lambda.hpp> #include <boost/mpl/aux_/config/lambda.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/template_arity_fwd.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:44 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.4 $ // $Revision: 24874 $
namespace boost { namespace mpl { namespace aux { namespace boost { namespace mpl { namespace aux {

View File

@ -11,9 +11,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/type_wrapper.hpp,v $ // $Source$
// $Date: 2004/09/28 13:56:59 $ // $Date: 2004-09-28 15:56:59 +0200 (Tue, 28 Sep 2004) $
// $Revision: 1.6 $ // $Revision: 25453 $
#include <boost/mpl/aux_/config/ctps.hpp> #include <boost/mpl/aux_/config/ctps.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/value_wknd.hpp,v $ // $Source$
// $Date: 2004/12/20 17:51:57 $ // $Date: 2004-12-20 18:52:43 +0100 (Mon, 20 Dec 2004) $
// $Revision: 1.14 $ // $Revision: 26558 $
#include <boost/mpl/aux_/static_cast.hpp> #include <boost/mpl/aux_/static_cast.hpp>
#include <boost/mpl/aux_/config/integral.hpp> #include <boost/mpl/aux_/config/integral.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/yes_no.hpp,v $ // $Source$
// $Date: 2005/08/25 16:27:21 $ // $Date: 2005-08-25 18:27:28 +0200 (Thu, 25 Aug 2005) $
// $Revision: 1.8 $ // $Revision: 30670 $
#include <boost/mpl/aux_/nttp_decl.hpp> #include <boost/mpl/aux_/nttp_decl.hpp>
#include <boost/mpl/aux_/config/arrays.hpp> #include <boost/mpl/aux_/config/arrays.hpp>

View File

@ -15,9 +15,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/bind.hpp,v $ // $Source$
// $Date: 2004/10/26 14:51:04 $ // $Date: 2004-10-26 16:51:08 +0200 (Tue, 26 Oct 2004) $
// $Revision: 1.13 $ // $Revision: 25875 $
#if !defined(BOOST_MPL_PREPROCESSING_MODE) #if !defined(BOOST_MPL_PREPROCESSING_MODE)
# include <boost/mpl/bind_fwd.hpp> # include <boost/mpl/bind_fwd.hpp>

View File

@ -14,9 +14,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/bind_fwd.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:41 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.2 $ // $Revision: 24874 $
#if !defined(BOOST_MPL_PREPROCESSING_MODE) #if !defined(BOOST_MPL_PREPROCESSING_MODE)
# include <boost/mpl/aux_/na.hpp> # include <boost/mpl/aux_/na.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/bool.hpp,v $ // $Source$
// $Date: 2004/09/26 09:54:25 $ // $Date: 2004-09-26 11:54:25 +0200 (Sun, 26 Sep 2004) $
// $Revision: 1.6 $ // $Revision: 25411 $
#include <boost/mpl/bool_fwd.hpp> #include <boost/mpl/bool_fwd.hpp>
#include <boost/mpl/integral_c_tag.hpp> #include <boost/mpl/integral_c_tag.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/bool_fwd.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:41 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.3 $ // $Revision: 24874 $
#include <boost/mpl/aux_/adl_barrier.hpp> #include <boost/mpl/aux_/adl_barrier.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/eval_if.hpp,v $ // $Source$
// $Date: 2004/11/28 01:54:10 $ // $Date: 2004-11-28 02:58:27 +0100 (Sun, 28 Nov 2004) $
// $Revision: 1.3 $ // $Revision: 26325 $
#include <boost/mpl/if.hpp> #include <boost/mpl/if.hpp>
#include <boost/mpl/aux_/na_spec.hpp> #include <boost/mpl/aux_/na_spec.hpp>

View File

@ -11,9 +11,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/has_xxx.hpp,v $ // $Source$
// $Date: 2006/11/09 01:05:31 $ // $Date: 2006-11-09 02:05:31 +0100 (Thu, 09 Nov 2006) $
// $Revision: 1.4.6.1 $ // $Revision: 35933 $
#include <boost/mpl/bool.hpp> #include <boost/mpl/bool.hpp>
#include <boost/mpl/aux_/type_wrapper.hpp> #include <boost/mpl/aux_/type_wrapper.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/identity.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:41 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.4 $ // $Revision: 24874 $
#include <boost/mpl/aux_/na_spec.hpp> #include <boost/mpl/aux_/na_spec.hpp>
#include <boost/mpl/aux_/lambda_support.hpp> #include <boost/mpl/aux_/lambda_support.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/if.hpp,v $ // $Source$
// $Date: 2004/09/07 08:51:31 $ // $Date: 2004-09-07 10:53:22 +0200 (Tue, 07 Sep 2004) $
// $Revision: 1.25 $ // $Revision: 24947 $
#include <boost/mpl/aux_/value_wknd.hpp> #include <boost/mpl/aux_/value_wknd.hpp>
#include <boost/mpl/aux_/static_cast.hpp> #include <boost/mpl/aux_/static_cast.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/int.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:41 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.4 $ // $Revision: 24874 $
#include <boost/mpl/int_fwd.hpp> #include <boost/mpl/int_fwd.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/int_fwd.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:41 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.3 $ // $Revision: 24874 $
#include <boost/mpl/aux_/adl_barrier.hpp> #include <boost/mpl/aux_/adl_barrier.hpp>
#include <boost/mpl/aux_/nttp_decl.hpp> #include <boost/mpl/aux_/nttp_decl.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/integral_c.hpp,v $ // $Source$
// $Date: 2006/11/08 21:44:27 $ // $Date: 2006-11-08 22:44:30 +0100 (Wed, 08 Nov 2006) $
// $Revision: 1.22.6.1 $ // $Revision: 35926 $
#include <boost/mpl/integral_c_fwd.hpp> #include <boost/mpl/integral_c_fwd.hpp>
#include <boost/mpl/aux_/config/ctps.hpp> #include <boost/mpl/aux_/config/ctps.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/integral_c_fwd.hpp,v $ // $Source$
// $Date: 2006/11/08 21:44:27 $ // $Date: 2006-11-08 22:44:30 +0100 (Wed, 08 Nov 2006) $
// $Revision: 1.4.14.1 $ // $Revision: 35926 $
#include <boost/mpl/aux_/config/workaround.hpp> #include <boost/mpl/aux_/config/workaround.hpp>
#include <boost/mpl/aux_/adl_barrier.hpp> #include <boost/mpl/aux_/adl_barrier.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/integral_c_tag.hpp,v $ // $Source$
// $Date: 2004/09/28 13:56:58 $ // $Date: 2004-09-28 15:56:59 +0200 (Tue, 28 Sep 2004) $
// $Revision: 1.2 $ // $Revision: 25453 $
#include <boost/mpl/aux_/adl_barrier.hpp> #include <boost/mpl/aux_/adl_barrier.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/lambda.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:41 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.5 $ // $Revision: 24874 $
#include <boost/mpl/lambda_fwd.hpp> #include <boost/mpl/lambda_fwd.hpp>
#include <boost/mpl/bind.hpp> #include <boost/mpl/bind.hpp>

View File

@ -10,9 +10,9 @@
// //
// See http://www.boost.org/libs/mpl for documentation. // See http://www.boost.org/libs/mpl for documentation.
// $Source: /cvsroot/boost/boost/boost/mpl/lambda_fwd.hpp,v $ // $Source$
// $Date: 2004/09/02 15:40:41 $ // $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
// $Revision: 1.7 $ // $Revision: 24874 $
#include <boost/mpl/void_fwd.hpp> #include <boost/mpl/void_fwd.hpp>
#include <boost/mpl/aux_/na.hpp> #include <boost/mpl/aux_/na.hpp>

Some files were not shown because too many files have changed in this diff Show More