mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
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:
parent
1050cc4471
commit
9a2bf73e31
@ -17,7 +17,11 @@
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
//
|
||||
|
||||
#include <bits/atomicity.h>
|
||||
#if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 2))
|
||||
# include <ext/atomicity.h>
|
||||
#else
|
||||
# include <bits/atomicity.h>
|
||||
#endif
|
||||
|
||||
namespace boost
|
||||
{
|
||||
|
@ -21,8 +21,8 @@
|
||||
// in anything that may be included by function_template.hpp doesn't break
|
||||
#include <boost/function/detail/prologue.hpp>
|
||||
|
||||
// Visual Age C++ doesn't handle the file iteration well
|
||||
#if BOOST_WORKAROUND(__IBMCPP__, >= 500)
|
||||
// Older versions of the IBM C++ compiler do not handle file iterations well
|
||||
#if BOOST_WORKAROUND(__IBMCPP__, >= 500) && BOOST_WORKAROUND(__IBMCPP__, < 800)
|
||||
# if BOOST_FUNCTION_MAX_ARGS >= 0
|
||||
# include <boost/function/function0.hpp>
|
||||
# endif
|
||||
|
@ -6,7 +6,7 @@
|
||||
// Boost functional.hpp header file
|
||||
// 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
|
||||
|
@ -5,7 +5,7 @@
|
||||
* accompanying file LICENSE_1_0.txt or copy at
|
||||
* 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
|
||||
*/
|
||||
|
@ -27,8 +27,8 @@ namespace std { using ::wint_t; }
|
||||
|
||||
namespace boost { namespace iostreams {
|
||||
|
||||
// Dinkumware that comes with QNX Momentics 6.3.0, 4.0.2, incorrectly defines the
|
||||
// EOF and WEOF macros to not std:: qualify the wint_t type (and so does
|
||||
// Dinkumware that comes with QNX Momentics 6.3.0, 4.0.2, incorrectly defines
|
||||
// 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.
|
||||
// NOTE: Use BOOST_WORKAROUND?
|
||||
#if (defined(__QNX__) && defined(BOOST_DINKUMWARE_STDLIB)) \
|
||||
|
@ -127,7 +127,7 @@ struct read_write_if_impl<output> {
|
||||
template<>
|
||||
struct seek_if_impl<random_access> {
|
||||
template<typename T>
|
||||
static stream_offset
|
||||
static std::streampos
|
||||
seek( T& t, stream_offset off, BOOST_IOS::seekdir way,
|
||||
BOOST_IOS::openmode which )
|
||||
{ return iostreams::seek(t, off, way, which); }
|
||||
@ -136,7 +136,7 @@ struct seek_if_impl<random_access> {
|
||||
template<>
|
||||
struct seek_if_impl<any_tag> {
|
||||
template<typename T>
|
||||
static stream_offset
|
||||
static std::streampos
|
||||
seek(T&, stream_offset, BOOST_IOS::seekdir, BOOST_IOS::openmode)
|
||||
{ throw cant_seek(); }
|
||||
};
|
||||
|
@ -80,16 +80,16 @@ public:
|
||||
std::streamsize write(const char_type* s, std::streamsize n, Sink* snk)
|
||||
{ return output_impl::write(t_, snk, s, n); }
|
||||
|
||||
stream_offset seek( stream_offset off, BOOST_IOS::seekdir way,
|
||||
BOOST_IOS::openmode which )
|
||||
std::streampos seek( stream_offset off, BOOST_IOS::seekdir way,
|
||||
BOOST_IOS::openmode which )
|
||||
{
|
||||
return this->seek( off, way, which,
|
||||
(basic_null_device<char_type, seekable>*) 0);
|
||||
}
|
||||
|
||||
template<typename Device>
|
||||
stream_offset seek( stream_offset off, BOOST_IOS::seekdir way,
|
||||
BOOST_IOS::openmode which, Device* dev )
|
||||
std::streampos seek( stream_offset off, BOOST_IOS::seekdir way,
|
||||
BOOST_IOS::openmode which, Device* dev )
|
||||
{ return any_impl::seek(t_, dev, off, way, which); }
|
||||
|
||||
void close(BOOST_IOS::openmode which)
|
||||
@ -122,7 +122,7 @@ public:
|
||||
template<>
|
||||
struct device_wrapper_impl<any_tag> {
|
||||
template<typename Device, typename Dummy>
|
||||
static stream_offset
|
||||
static std::streampos
|
||||
seek( Device& dev, Dummy*, stream_offset off,
|
||||
BOOST_IOS::seekdir way, BOOST_IOS::openmode which )
|
||||
{
|
||||
@ -131,7 +131,7 @@ struct device_wrapper_impl<any_tag> {
|
||||
}
|
||||
|
||||
template<typename Device>
|
||||
static stream_offset
|
||||
static std::streampos
|
||||
seek( Device&, stream_offset, BOOST_IOS::seekdir,
|
||||
BOOST_IOS::openmode, any_tag )
|
||||
{
|
||||
@ -139,7 +139,7 @@ struct device_wrapper_impl<any_tag> {
|
||||
}
|
||||
|
||||
template<typename Device>
|
||||
static stream_offset
|
||||
static std::streampos
|
||||
seek( Device& dev, stream_offset off,
|
||||
BOOST_IOS::seekdir way, BOOST_IOS::openmode which,
|
||||
random_access )
|
||||
@ -191,7 +191,7 @@ struct device_wrapper_impl<output> {
|
||||
template<>
|
||||
struct flt_wrapper_impl<any_tag> {
|
||||
template<typename Filter, typename Device>
|
||||
static stream_offset
|
||||
static std::streampos
|
||||
seek( Filter& f, Device* dev, stream_offset off,
|
||||
BOOST_IOS::seekdir way, BOOST_IOS::openmode which )
|
||||
{
|
||||
@ -200,13 +200,13 @@ struct flt_wrapper_impl<any_tag> {
|
||||
}
|
||||
|
||||
template<typename Filter, typename Device>
|
||||
static stream_offset
|
||||
static std::streampos
|
||||
seek( Filter&, Device*, stream_offset,
|
||||
BOOST_IOS::seekdir, BOOST_IOS::openmode, any_tag )
|
||||
{ throw cant_seek(); }
|
||||
|
||||
template<typename Filter, typename Device>
|
||||
static stream_offset
|
||||
static std::streampos
|
||||
seek( Filter& f, Device* dev, stream_offset off,
|
||||
BOOST_IOS::seekdir way, BOOST_IOS::openmode which,
|
||||
random_access tag )
|
||||
@ -216,14 +216,14 @@ struct flt_wrapper_impl<any_tag> {
|
||||
}
|
||||
|
||||
template<typename Filter, typename Device>
|
||||
static stream_offset
|
||||
static std::streampos
|
||||
seek( Filter& f, Device* dev, stream_offset off,
|
||||
BOOST_IOS::seekdir way, BOOST_IOS::openmode which,
|
||||
random_access, any_tag )
|
||||
{ return f.seek(*dev, off, way); }
|
||||
|
||||
template<typename Filter, typename Device>
|
||||
static stream_offset
|
||||
static std::streampos
|
||||
seek( Filter& f, Device* dev, stream_offset off,
|
||||
BOOST_IOS::seekdir way, BOOST_IOS::openmode which,
|
||||
random_access, two_sequence )
|
||||
|
@ -48,9 +48,9 @@ public:
|
||||
|
||||
std::streamsize read(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,
|
||||
BOOST_IOS::openmode which =
|
||||
BOOST_IOS::in | BOOST_IOS::out );
|
||||
std::streampos seek( stream_offset off, BOOST_IOS::seekdir way,
|
||||
BOOST_IOS::openmode which =
|
||||
BOOST_IOS::in | BOOST_IOS::out );
|
||||
#if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
|
||||
void close(BOOST_IOS::openmode which = BOOST_IOS::in | BOOST_IOS::out);
|
||||
#endif
|
||||
@ -66,12 +66,12 @@ public:
|
||||
{ return iostreams::write(t_, snk, s, n); }
|
||||
|
||||
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); }
|
||||
|
||||
template<typename Device>
|
||||
stream_offset seek( Device& dev, stream_offset off,
|
||||
BOOST_IOS::seekdir way, BOOST_IOS::openmode which )
|
||||
std::streampos seek( Device& dev, stream_offset off,
|
||||
BOOST_IOS::seekdir way, BOOST_IOS::openmode which )
|
||||
{ return iostreams::seek(t_, dev, off, way, which); }
|
||||
|
||||
template<typename Device>
|
||||
@ -102,7 +102,7 @@ std::streamsize mode_adapter<Mode, T>::write
|
||||
{ return boost::iostreams::write(t_, s, n); }
|
||||
|
||||
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)
|
||||
{ return boost::iostreams::seek(t_, off, way, which); }
|
||||
|
||||
|
@ -44,9 +44,9 @@ public:
|
||||
}
|
||||
return result;
|
||||
}
|
||||
stream_offset seek( stream_offset off, BOOST_IOS::seekdir way,
|
||||
BOOST_IOS::openmode which =
|
||||
BOOST_IOS::in | BOOST_IOS::out )
|
||||
std::streampos seek( stream_offset off, BOOST_IOS::seekdir way,
|
||||
BOOST_IOS::openmode which =
|
||||
BOOST_IOS::in | BOOST_IOS::out )
|
||||
{ return iostreams::seek(device_, off, way, which); }
|
||||
public:
|
||||
Device& device_;
|
||||
|
@ -62,7 +62,7 @@ public:
|
||||
range_adapter(iterator first, iterator last);
|
||||
std::streamsize read(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:
|
||||
iterator first_, cur_, last_;
|
||||
};
|
||||
@ -89,11 +89,11 @@ inline std::streamsize range_adapter<Mode, Range>::write
|
||||
|
||||
|
||||
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)
|
||||
{
|
||||
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----------------------//
|
||||
|
@ -47,10 +47,7 @@ template<typename Mode, typename Ch, typename T>
|
||||
struct resolve_traits {
|
||||
typedef typename
|
||||
mpl::if_<
|
||||
mpl::and_<
|
||||
boost::detail::is_incrementable<T>, // Must come first
|
||||
is_dereferenceable<T> // for CW 9.[0-4]
|
||||
>,
|
||||
boost::detail::is_incrementable<T>,
|
||||
output_iterator_adapter<Mode, Ch, T>,
|
||||
const T&
|
||||
>::type type;
|
||||
@ -163,10 +160,7 @@ struct resolve_traits {
|
||||
mode_adapter<Mode, T>,
|
||||
is_iterator_range<T>,
|
||||
range_adapter<Mode, T>,
|
||||
mpl::and_<
|
||||
is_dereferenceable<T>,
|
||||
boost::detail::is_incrementable<T>
|
||||
>,
|
||||
is_dereferenceable<T>,
|
||||
output_iterator_adapter<Mode, Ch, T>,
|
||||
is_array<T>,
|
||||
array_adapter<Mode, T>,
|
||||
|
@ -24,6 +24,7 @@
|
||||
#include <boost/iostreams/detail/streambuf/linked_streambuf.hpp>
|
||||
#include <boost/iostreams/detail/error.hpp>
|
||||
#include <boost/iostreams/operations.hpp>
|
||||
#include <boost/iostreams/positioning.hpp>
|
||||
#include <boost/iostreams/traits.hpp>
|
||||
|
||||
// Must come last.
|
||||
@ -52,7 +53,7 @@ private:
|
||||
) streambuf_type;
|
||||
public: // stream needs access.
|
||||
void open(const T& t, int buffer_size, int pback_size);
|
||||
bool is_open();
|
||||
bool is_open() const;
|
||||
void close();
|
||||
bool auto_close() const { return auto_close_; }
|
||||
void set_auto_close(bool close) { auto_close_ = close; }
|
||||
@ -85,7 +86,7 @@ protected:
|
||||
BOOST_IOS::openmode which );
|
||||
pos_type seekpos(pos_type sp, BOOST_IOS::openmode which);
|
||||
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 );
|
||||
void init_input(any_tag) { }
|
||||
void init_input(input);
|
||||
@ -118,7 +119,8 @@ void direct_streambuf<T, Tr>::open(const T& t, int, int)
|
||||
}
|
||||
|
||||
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>
|
||||
void direct_streambuf<T, Tr>::close()
|
||||
@ -185,7 +187,10 @@ template<typename T, typename Tr>
|
||||
inline typename direct_streambuf<T, Tr>::pos_type
|
||||
direct_streambuf<T, Tr>::seekpos
|
||||
(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>
|
||||
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>
|
||||
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;
|
||||
BOOST_IOS::openmode both = BOOST_IOS::in | BOOST_IOS::out;
|
||||
if (two_head() && (which & both) == both)
|
||||
throw bad_seek();
|
||||
off_type result = -1;
|
||||
stream_offset result = -1;
|
||||
bool one = one_head();
|
||||
if (one && (pptr() != 0 || gptr()== 0))
|
||||
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_)));
|
||||
result = next;
|
||||
}
|
||||
return result;
|
||||
return offset_to_position(result);
|
||||
}
|
||||
|
||||
template<typename T, typename Tr>
|
||||
|
@ -118,7 +118,7 @@ private:
|
||||
void sync_impl();
|
||||
void close_impl(BOOST_IOS::openmode);
|
||||
|
||||
enum {
|
||||
enum flag_type {
|
||||
f_open = 1,
|
||||
f_input_closed = f_open << 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
|
||||
indirect_streambuf<T, Tr, Alloc, Mode>::seekpos
|
||||
(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>
|
||||
typename indirect_streambuf<T, Tr, Alloc, Mode>::pos_type
|
||||
|
@ -51,9 +51,9 @@ public:
|
||||
BOOST_IOS::in | BOOST_IOS::out );
|
||||
std::streamsize read(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,
|
||||
BOOST_IOS::openmode which =
|
||||
BOOST_IOS::in | BOOST_IOS::out );
|
||||
std::streampos seek( stream_offset off, BOOST_IOS::seekdir way,
|
||||
BOOST_IOS::openmode which =
|
||||
BOOST_IOS::in | BOOST_IOS::out );
|
||||
void open( const std::string& path,
|
||||
BOOST_IOS::openmode mode =
|
||||
BOOST_IOS::in | BOOST_IOS::out,
|
||||
@ -154,7 +154,7 @@ inline std::streamsize basic_file<Ch>::write
|
||||
{ return pimpl_->file_.sputn(s, n); }
|
||||
|
||||
template<typename Ch>
|
||||
stream_offset basic_file<Ch>::seek
|
||||
std::streampos basic_file<Ch>::seek
|
||||
( stream_offset off, BOOST_IOS::seekdir way,
|
||||
BOOST_IOS::openmode )
|
||||
{ return iostreams::seek(pimpl_->file_, off, way); }
|
||||
|
@ -63,7 +63,7 @@ public:
|
||||
bool is_open() const { return pimpl_->flags_ != 0; }
|
||||
std::streamsize read(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();
|
||||
private:
|
||||
struct impl {
|
||||
|
@ -137,7 +137,7 @@ private:
|
||||
|
||||
//------------------Definition of mapped_file---------------------------------//
|
||||
|
||||
class mapped_file {
|
||||
class BOOST_IOSTREAMS_DECL mapped_file {
|
||||
private:
|
||||
typedef mapped_file_source delegate_type;
|
||||
delegate_type delegate_;
|
||||
@ -202,7 +202,7 @@ public:
|
||||
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>;
|
||||
typedef char char_type;
|
||||
struct category
|
||||
|
@ -30,9 +30,9 @@ public:
|
||||
{ };
|
||||
std::streamsize read(Ch*, std::streamsize) { return 0; }
|
||||
std::streamsize write(const Ch*, std::streamsize n) { return n; }
|
||||
stream_offset seek( stream_offset, BOOST_IOS::seekdir,
|
||||
BOOST_IOS::openmode =
|
||||
BOOST_IOS::in | BOOST_IOS::out )
|
||||
std::streampos seek( stream_offset, BOOST_IOS::seekdir,
|
||||
BOOST_IOS::openmode =
|
||||
BOOST_IOS::in | BOOST_IOS::out )
|
||||
{ return -1; }
|
||||
void close(BOOST_IOS::openmode = BOOST_IOS::in | BOOST_IOS::out) { }
|
||||
};
|
||||
|
@ -234,14 +234,20 @@ public:
|
||||
template<typename Sink>
|
||||
void close(Sink& snk, BOOST_IOS::openmode m)
|
||||
{
|
||||
namespace io = boost::iostreams;
|
||||
|
||||
if (m & BOOST_IOS::out) {
|
||||
|
||||
// Close zlib compressor.
|
||||
base_type::close(snk, BOOST_IOS::out);
|
||||
|
||||
// Write final fields of gzip file format.
|
||||
write_long(this->crc(), snk);
|
||||
write_long(this->total_in(), snk);
|
||||
if (flags_ & f_header_done) {
|
||||
|
||||
// Write final fields of gzip file format.
|
||||
write_long(this->crc(), snk);
|
||||
write_long(this->total_in(), snk);
|
||||
}
|
||||
|
||||
}
|
||||
#if BOOST_WORKAROUND(__GNUC__, == 2) && defined(__STL_CONFIG_H) || \
|
||||
BOOST_WORKAROUND(BOOST_DINKUMWARE_STDLIB, == 1) \
|
||||
@ -267,7 +273,7 @@ private:
|
||||
boost::iostreams::put(next, static_cast<char>(0xFF & (n >> 24)));
|
||||
}
|
||||
|
||||
enum {
|
||||
enum flag_type {
|
||||
f_header_done = 1,
|
||||
f_body_done = f_header_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())
|
||||
throw gzip_error(gzip::bad_length);
|
||||
}
|
||||
enum {
|
||||
enum flag_type {
|
||||
f_header_read = 1,
|
||||
f_footer_read = f_header_read << 1,
|
||||
f_text = f_footer_read << 1
|
||||
@ -547,11 +553,11 @@ std::streamsize basic_gzip_compressor<Alloc>::read_string
|
||||
static_cast<streamsize>(str.size() - offset_);
|
||||
streamsize amt = (std::min)(avail, n);
|
||||
std::copy( str.data() + offset_,
|
||||
str.data() + offset_ + amt,
|
||||
s );
|
||||
str.data() + offset_ + amt,
|
||||
s );
|
||||
offset_ += amt;
|
||||
if ( !(flags_ & f_header_done) &&
|
||||
offset_ == static_cast<std::size_t>(str.size()) )
|
||||
offset_ == static_cast<std::size_t>(str.size()) )
|
||||
{
|
||||
flags_ |= f_header_done;
|
||||
}
|
||||
|
@ -332,7 +332,7 @@ zlib_compressor_impl<Alloc>::zlib_compressor_impl(const zlib_params& p)
|
||||
|
||||
template<typename Alloc>
|
||||
zlib_compressor_impl<Alloc>::~zlib_compressor_impl()
|
||||
{ /*reset(true, false);*/ }
|
||||
{ reset(true, false); }
|
||||
|
||||
template<typename Alloc>
|
||||
bool zlib_compressor_impl<Alloc>::filter
|
||||
@ -357,7 +357,7 @@ zlib_decompressor_impl<Alloc>::zlib_decompressor_impl(const zlib_params& p)
|
||||
|
||||
template<typename Alloc>
|
||||
zlib_decompressor_impl<Alloc>::~zlib_decompressor_impl()
|
||||
{ /*reset(false, false);*/ }
|
||||
{ reset(false, false); }
|
||||
|
||||
template<typename Alloc>
|
||||
zlib_decompressor_impl<Alloc>::zlib_decompressor_impl(int window_bits)
|
||||
|
@ -76,8 +76,8 @@ namespace std
|
||||
static BOOST_LLT denorm_min() throw() { return 0; };
|
||||
|
||||
BOOST_STATIC_CONSTANT(bool, is_iec559 = false);
|
||||
BOOST_STATIC_CONSTANT(bool, is_bounded = false);
|
||||
BOOST_STATIC_CONSTANT(bool, is_modulo = false);
|
||||
BOOST_STATIC_CONSTANT(bool, is_bounded = true);
|
||||
BOOST_STATIC_CONSTANT(bool, is_modulo = true);
|
||||
|
||||
BOOST_STATIC_CONSTANT(bool, traps = false);
|
||||
BOOST_STATIC_CONSTANT(bool, tinyness_before = false);
|
||||
@ -129,8 +129,8 @@ namespace std
|
||||
static BOOST_ULLT denorm_min() throw() { return 0; };
|
||||
|
||||
BOOST_STATIC_CONSTANT(bool, is_iec559 = false);
|
||||
BOOST_STATIC_CONSTANT(bool, is_bounded = false);
|
||||
BOOST_STATIC_CONSTANT(bool, is_modulo = false);
|
||||
BOOST_STATIC_CONSTANT(bool, is_bounded = true);
|
||||
BOOST_STATIC_CONSTANT(bool, is_modulo = true);
|
||||
|
||||
BOOST_STATIC_CONSTANT(bool, traps = false);
|
||||
BOOST_STATIC_CONSTANT(bool, tinyness_before = false);
|
||||
@ -141,3 +141,4 @@ namespace std
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/always.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:41 $
|
||||
// $Revision: 1.5 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/preprocessor/def_params_tail.hpp>
|
||||
#include <boost/mpl/aux_/na.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/and.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:41 $
|
||||
// $Revision: 1.5 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/use_preprocessed.hpp>
|
||||
|
||||
|
@ -14,9 +14,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/apply.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:41 $
|
||||
// $Revision: 1.17 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#if !defined(BOOST_MPL_PREPROCESSING_MODE)
|
||||
# include <boost/mpl/apply_fwd.hpp>
|
||||
|
@ -14,9 +14,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/apply_fwd.hpp,v $
|
||||
// $Date: 2005/08/25 16:27:21 $
|
||||
// $Revision: 1.3 $
|
||||
// $Source$
|
||||
// $Date: 2005-08-25 18:27:28 +0200 (Thu, 25 Aug 2005) $
|
||||
// $Revision: 30670 $
|
||||
|
||||
#if !defined(BOOST_MPL_PREPROCESSING_MODE)
|
||||
# include <boost/mpl/aux_/na.hpp>
|
||||
|
@ -14,9 +14,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/apply_wrap.hpp,v $
|
||||
// $Date: 2004/09/03 15:56:55 $
|
||||
// $Revision: 1.3 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-03 17:56:59 +0200 (Fri, 03 Sep 2004) $
|
||||
// $Revision: 24892 $
|
||||
|
||||
#if !defined(BOOST_MPL_PREPROCESSING_MODE)
|
||||
# include <boost/mpl/aux_/arity.hpp>
|
||||
|
@ -15,9 +15,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/arg.hpp,v $
|
||||
// $Date: 2004/09/21 13:48:07 $
|
||||
// $Revision: 1.12 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-21 15:48:10 +0200 (Tue, 21 Sep 2004) $
|
||||
// $Revision: 25308 $
|
||||
|
||||
#if !defined(BOOST_MPL_PREPROCESSING_MODE)
|
||||
# include <boost/mpl/arg_fwd.hpp>
|
||||
|
@ -11,9 +11,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/arg_fwd.hpp,v $
|
||||
// $Date: 2004/09/28 13:56:58 $
|
||||
// $Revision: 1.6 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-28 15:56:59 +0200 (Tue, 28 Sep 2004) $
|
||||
// $Revision: 25453 $
|
||||
|
||||
#include <boost/mpl/aux_/adl_barrier.hpp>
|
||||
#include <boost/mpl/aux_/nttp_decl.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/assert.hpp,v $
|
||||
// $Date: 2006/11/10 21:31:19 $
|
||||
// $Revision: 1.13.14.6 $
|
||||
// $Source$
|
||||
// $Date: 2006-11-10 22:31:19 +0100 (Fri, 10 Nov 2006) $
|
||||
// $Revision: 35997 $
|
||||
|
||||
#include <boost/mpl/not.hpp>
|
||||
#include <boost/mpl/aux_/value_wknd.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/adl_barrier.hpp,v $
|
||||
// $Date: 2004/09/28 13:56:59 $
|
||||
// $Revision: 1.4 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-28 15:56:59 +0200 (Tue, 28 Sep 2004) $
|
||||
// $Revision: 25453 $
|
||||
|
||||
#include <boost/mpl/aux_/config/adl.hpp>
|
||||
#include <boost/mpl/aux_/config/gcc.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/arg_typedef.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:43 $
|
||||
// $Revision: 1.3 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/lambda.hpp>
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/arity.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:43 $
|
||||
// $Revision: 1.6 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/dtp.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/arity_spec.hpp,v $
|
||||
// $Date: 2004/11/28 02:04:02 $
|
||||
// $Revision: 1.7 $
|
||||
// $Source$
|
||||
// $Date: 2004-11-28 03:04:02 +0100 (Sun, 28 Nov 2004) $
|
||||
// $Revision: 26326 $
|
||||
|
||||
#include <boost/mpl/int.hpp>
|
||||
#include <boost/mpl/limits/arity.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/common_name_wknd.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:43 $
|
||||
// $Revision: 1.4 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/adl.hpp,v $
|
||||
// $Date: 2004/09/16 14:08:47 $
|
||||
// $Revision: 1.1 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-16 16:09:12 +0200 (Thu, 16 Sep 2004) $
|
||||
// $Revision: 25148 $
|
||||
|
||||
#include <boost/mpl/aux_/config/msvc.hpp>
|
||||
#include <boost/mpl/aux_/config/intel.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/arrays.hpp,v $
|
||||
// $Date: 2004/09/03 15:56:55 $
|
||||
// $Revision: 1.3 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-03 17:56:59 +0200 (Fri, 03 Sep 2004) $
|
||||
// $Revision: 24892 $
|
||||
|
||||
#include <boost/mpl/aux_/config/msvc.hpp>
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
@ -11,9 +11,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/bind.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.6 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/msvc.hpp>
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/compiler.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.9 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#if !defined(BOOST_MPL_CFG_COMPILER_DIR)
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/ctps.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.5 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
#include <boost/config.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/dtp.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.9 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/eti.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.6 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/msvc.hpp>
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/gcc.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.2 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#if defined(__GNUC__) && !defined(__EDG_VERSION__)
|
||||
# define BOOST_MPL_CFG_GCC ((__GNUC__ << 8) | __GNUC_MINOR__)
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/has_apply.hpp,v $
|
||||
// $Date: 2004/09/13 06:10:10 $
|
||||
// $Revision: 1.2 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-13 08:10:10 +0200 (Mon, 13 Sep 2004) $
|
||||
// $Revision: 25029 $
|
||||
|
||||
#include <boost/mpl/aux_/config/has_xxx.hpp>
|
||||
#include <boost/mpl/aux_/config/msvc.hpp>
|
||||
|
@ -11,9 +11,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/has_xxx.hpp,v $
|
||||
// $Date: 2004/09/03 15:56:56 $
|
||||
// $Revision: 1.3 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-03 17:56:59 +0200 (Fri, 03 Sep 2004) $
|
||||
// $Revision: 24892 $
|
||||
|
||||
#include <boost/mpl/aux_/config/overload_resolution.hpp>
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/integral.hpp,v $
|
||||
// $Date: 2004/09/07 08:51:32 $
|
||||
// $Revision: 1.1 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-07 10:53:22 +0200 (Tue, 07 Sep 2004) $
|
||||
// $Revision: 24947 $
|
||||
|
||||
#include <boost/mpl/aux_/config/msvc.hpp>
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/intel.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.1 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
|
||||
// BOOST_INTEL_CXX_VERSION is defined here:
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/lambda.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.3 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/ttp.hpp>
|
||||
#include <boost/mpl/aux_/config/ctps.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/msvc.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.3 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
|
||||
// BOOST_MSVC is defined here:
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/msvc_typename.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.4 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/msvc.hpp>
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/nttp.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.4 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/msvc.hpp>
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/overload_resolution.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.9 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/preprocessor.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.6 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/static_constant.hpp,v $
|
||||
// $Date: 2004/09/07 08:51:32 $
|
||||
// $Revision: 1.4 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-07 10:53:22 +0200 (Tue, 07 Sep 2004) $
|
||||
// $Revision: 24947 $
|
||||
|
||||
#if !defined(BOOST_MPL_PREPROCESSING_MODE)
|
||||
// BOOST_STATIC_CONSTANT is defined here:
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/ttp.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.7 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/msvc.hpp>
|
||||
#include <boost/mpl/aux_/config/gcc.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/use_preprocessed.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.7 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
// #define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/config/workaround.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:45 $
|
||||
// $Revision: 1.3 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/detail/workaround.hpp>
|
||||
|
||||
|
@ -14,9 +14,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/full_lambda.hpp,v $
|
||||
// $Date: 2004/09/04 01:10:19 $
|
||||
// $Revision: 1.14 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-04 03:10:23 +0200 (Sat, 04 Sep 2004) $
|
||||
// $Revision: 24896 $
|
||||
|
||||
#if !defined(BOOST_MPL_PREPROCESSING_MODE)
|
||||
# include <boost/mpl/lambda_fwd.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/has_apply.hpp,v $
|
||||
// $Date: 2004/09/03 15:56:55 $
|
||||
// $Revision: 1.1 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-03 17:56:59 +0200 (Fri, 03 Sep 2004) $
|
||||
// $Revision: 24892 $
|
||||
|
||||
#include <boost/mpl/has_xxx.hpp>
|
||||
#include <boost/mpl/aux_/config/has_apply.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/has_type.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:43 $
|
||||
// $Revision: 1.4 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/has_xxx.hpp>
|
||||
|
||||
|
@ -9,9 +9,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/include_preprocessed.hpp,v $
|
||||
// $Date: 2006/11/09 00:46:57 $
|
||||
// $Revision: 1.5.14.1 $
|
||||
// $Source$
|
||||
// $Date: 2006-11-09 01:46:57 +0100 (Thu, 09 Nov 2006) $
|
||||
// $Revision: 35931 $
|
||||
|
||||
#include <boost/mpl/aux_/config/compiler.hpp>
|
||||
#include <boost/mpl/aux_/config/preprocessor.hpp>
|
||||
|
@ -7,9 +7,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/integral_wrapper.hpp,v $
|
||||
// $Date: 2006/11/08 21:44:30 $
|
||||
// $Revision: 1.10.14.1 $
|
||||
// $Source$
|
||||
// $Date: 2006-11-08 22:44:30 +0100 (Wed, 08 Nov 2006) $
|
||||
// $Revision: 35926 $
|
||||
|
||||
// NO INCLUDE GUARDS, THE HEADER IS INTENDED FOR MULTIPLE INCLUSION!
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/is_msvc_eti_arg.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:43 $
|
||||
// $Revision: 1.4 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/yes_no.hpp>
|
||||
#include <boost/mpl/aux_/config/eti.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/lambda_arity_param.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:43 $
|
||||
// $Revision: 1.5 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/ttp.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/lambda_spec.hpp,v $
|
||||
// $Date: 2007/01/29 07:28:45 $
|
||||
// $Revision: 1.8.14.1 $
|
||||
// $Source$
|
||||
// $Date: 2007-01-29 08:28:45 +0100 (Mon, 29 Jan 2007) $
|
||||
// $Revision: 36830 $
|
||||
|
||||
#include <boost/mpl/void.hpp>
|
||||
#include <boost/mpl/lambda_fwd.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/lambda_support.hpp,v $
|
||||
// $Date: 2005/08/25 16:27:21 $
|
||||
// $Revision: 1.13 $
|
||||
// $Source$
|
||||
// $Date: 2005-08-25 18:27:28 +0200 (Thu, 25 Aug 2005) $
|
||||
// $Revision: 30670 $
|
||||
|
||||
#include <boost/mpl/aux_/config/lambda.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/msvc_eti_base.hpp,v $
|
||||
// $Date: 2004/11/28 01:37:05 $
|
||||
// $Revision: 1.7 $
|
||||
// $Source$
|
||||
// $Date: 2004-11-28 02:39:23 +0100 (Sun, 28 Nov 2004) $
|
||||
// $Revision: 26324 $
|
||||
|
||||
#include <boost/mpl/aux_/is_msvc_eti_arg.hpp>
|
||||
#include <boost/mpl/aux_/config/eti.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/msvc_never_true.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:43 $
|
||||
// $Revision: 1.5 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/msvc.hpp>
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/na.hpp,v $
|
||||
// $Date: 2004/11/28 01:37:30 $
|
||||
// $Revision: 1.6 $
|
||||
// $Source$
|
||||
// $Date: 2004-11-28 02:39:23 +0100 (Sun, 28 Nov 2004) $
|
||||
// $Revision: 26324 $
|
||||
|
||||
#include <boost/mpl/bool.hpp>
|
||||
#include <boost/mpl/aux_/na_fwd.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/na_assert.hpp,v $
|
||||
// $Date: 2005/07/13 13:13:38 $
|
||||
// $Revision: 1.6 $
|
||||
// $Source$
|
||||
// $Date: 2005-07-13 15:13:38 +0200 (Wed, 13 Jul 2005) $
|
||||
// $Revision: 30043 $
|
||||
|
||||
#include <boost/mpl/aux_/na.hpp>
|
||||
#include <boost/mpl/aux_/config/msvc.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/na_fwd.hpp,v $
|
||||
// $Date: 2004/11/28 01:37:30 $
|
||||
// $Revision: 1.2 $
|
||||
// $Source$
|
||||
// $Date: 2004-11-28 02:39:23 +0100 (Sun, 28 Nov 2004) $
|
||||
// $Revision: 26324 $
|
||||
|
||||
#include <boost/mpl/aux_/adl_barrier.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/na_spec.hpp,v $
|
||||
// $Date: 2004/11/28 01:38:15 $
|
||||
// $Revision: 1.3 $
|
||||
// $Source$
|
||||
// $Date: 2004-11-28 02:39:23 +0100 (Sun, 28 Nov 2004) $
|
||||
// $Revision: 26324 $
|
||||
|
||||
#if !defined(BOOST_MPL_PREPROCESSING_MODE)
|
||||
# include <boost/mpl/lambda_fwd.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/nested_type_wknd.hpp,v $
|
||||
// $Date: 2004/09/28 13:56:59 $
|
||||
// $Revision: 1.7 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-28 15:56:59 +0200 (Tue, 28 Sep 2004) $
|
||||
// $Revision: 25453 $
|
||||
|
||||
#include <boost/mpl/aux_/config/gcc.hpp>
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/nttp_decl.hpp,v $
|
||||
// $Date: 2004/12/16 22:43:05 $
|
||||
// $Revision: 1.2 $
|
||||
// $Source$
|
||||
// $Date: 2004-12-16 23:43:05 +0100 (Thu, 16 Dec 2004) $
|
||||
// $Revision: 26536 $
|
||||
|
||||
#include <boost/mpl/aux_/config/nttp.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/preprocessor/def_params_tail.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:56 $
|
||||
// $Revision: 1.6 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/limits/arity.hpp>
|
||||
#include <boost/mpl/aux_/config/dtp.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/preprocessor/default_params.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:56 $
|
||||
// $Revision: 1.5 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/preprocessor.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/preprocessor/enum.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:56 $
|
||||
// $Revision: 1.5 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/preprocessor.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/preprocessor/filter_params.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:56 $
|
||||
// $Revision: 1.4 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#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
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/preprocessor/params.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:56 $
|
||||
// $Revision: 1.5 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/preprocessor.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/preprocessor/sub.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:56 $
|
||||
// $Revision: 1.7 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/preprocessor.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/preprocessor/tuple.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:56 $
|
||||
// $Revision: 1.5 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $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_1(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e1
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/static_cast.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:44 $
|
||||
// $Revision: 1.3 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
|
||||
|
@ -14,9 +14,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/template_arity.hpp,v $
|
||||
// $Date: 2004/09/07 12:24:48 $
|
||||
// $Revision: 1.11 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-07 14:24:50 +0200 (Tue, 07 Sep 2004) $
|
||||
// $Revision: 24957 $
|
||||
|
||||
#include <boost/mpl/aux_/config/ttp.hpp>
|
||||
#include <boost/mpl/aux_/config/lambda.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/template_arity_fwd.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:44 $
|
||||
// $Revision: 1.4 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
namespace boost { namespace mpl { namespace aux {
|
||||
|
||||
|
@ -11,9 +11,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/type_wrapper.hpp,v $
|
||||
// $Date: 2004/09/28 13:56:59 $
|
||||
// $Revision: 1.6 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-28 15:56:59 +0200 (Tue, 28 Sep 2004) $
|
||||
// $Revision: 25453 $
|
||||
|
||||
#include <boost/mpl/aux_/config/ctps.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/value_wknd.hpp,v $
|
||||
// $Date: 2004/12/20 17:51:57 $
|
||||
// $Revision: 1.14 $
|
||||
// $Source$
|
||||
// $Date: 2004-12-20 18:52:43 +0100 (Mon, 20 Dec 2004) $
|
||||
// $Revision: 26558 $
|
||||
|
||||
#include <boost/mpl/aux_/static_cast.hpp>
|
||||
#include <boost/mpl/aux_/config/integral.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/aux_/yes_no.hpp,v $
|
||||
// $Date: 2005/08/25 16:27:21 $
|
||||
// $Revision: 1.8 $
|
||||
// $Source$
|
||||
// $Date: 2005-08-25 18:27:28 +0200 (Thu, 25 Aug 2005) $
|
||||
// $Revision: 30670 $
|
||||
|
||||
#include <boost/mpl/aux_/nttp_decl.hpp>
|
||||
#include <boost/mpl/aux_/config/arrays.hpp>
|
||||
|
@ -15,9 +15,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/bind.hpp,v $
|
||||
// $Date: 2004/10/26 14:51:04 $
|
||||
// $Revision: 1.13 $
|
||||
// $Source$
|
||||
// $Date: 2004-10-26 16:51:08 +0200 (Tue, 26 Oct 2004) $
|
||||
// $Revision: 25875 $
|
||||
|
||||
#if !defined(BOOST_MPL_PREPROCESSING_MODE)
|
||||
# include <boost/mpl/bind_fwd.hpp>
|
||||
|
@ -14,9 +14,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/bind_fwd.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:41 $
|
||||
// $Revision: 1.2 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#if !defined(BOOST_MPL_PREPROCESSING_MODE)
|
||||
# include <boost/mpl/aux_/na.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/bool.hpp,v $
|
||||
// $Date: 2004/09/26 09:54:25 $
|
||||
// $Revision: 1.6 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-26 11:54:25 +0200 (Sun, 26 Sep 2004) $
|
||||
// $Revision: 25411 $
|
||||
|
||||
#include <boost/mpl/bool_fwd.hpp>
|
||||
#include <boost/mpl/integral_c_tag.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/bool_fwd.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:41 $
|
||||
// $Revision: 1.3 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/adl_barrier.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/eval_if.hpp,v $
|
||||
// $Date: 2004/11/28 01:54:10 $
|
||||
// $Revision: 1.3 $
|
||||
// $Source$
|
||||
// $Date: 2004-11-28 02:58:27 +0100 (Sun, 28 Nov 2004) $
|
||||
// $Revision: 26325 $
|
||||
|
||||
#include <boost/mpl/if.hpp>
|
||||
#include <boost/mpl/aux_/na_spec.hpp>
|
||||
|
@ -11,9 +11,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/has_xxx.hpp,v $
|
||||
// $Date: 2006/11/09 01:05:31 $
|
||||
// $Revision: 1.4.6.1 $
|
||||
// $Source$
|
||||
// $Date: 2006-11-09 02:05:31 +0100 (Thu, 09 Nov 2006) $
|
||||
// $Revision: 35933 $
|
||||
|
||||
#include <boost/mpl/bool.hpp>
|
||||
#include <boost/mpl/aux_/type_wrapper.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/identity.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:41 $
|
||||
// $Revision: 1.4 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/na_spec.hpp>
|
||||
#include <boost/mpl/aux_/lambda_support.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/if.hpp,v $
|
||||
// $Date: 2004/09/07 08:51:31 $
|
||||
// $Revision: 1.25 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-07 10:53:22 +0200 (Tue, 07 Sep 2004) $
|
||||
// $Revision: 24947 $
|
||||
|
||||
#include <boost/mpl/aux_/value_wknd.hpp>
|
||||
#include <boost/mpl/aux_/static_cast.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/int.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:41 $
|
||||
// $Revision: 1.4 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/int_fwd.hpp>
|
||||
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/int_fwd.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:41 $
|
||||
// $Revision: 1.3 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/aux_/adl_barrier.hpp>
|
||||
#include <boost/mpl/aux_/nttp_decl.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/integral_c.hpp,v $
|
||||
// $Date: 2006/11/08 21:44:27 $
|
||||
// $Revision: 1.22.6.1 $
|
||||
// $Source$
|
||||
// $Date: 2006-11-08 22:44:30 +0100 (Wed, 08 Nov 2006) $
|
||||
// $Revision: 35926 $
|
||||
|
||||
#include <boost/mpl/integral_c_fwd.hpp>
|
||||
#include <boost/mpl/aux_/config/ctps.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/integral_c_fwd.hpp,v $
|
||||
// $Date: 2006/11/08 21:44:27 $
|
||||
// $Revision: 1.4.14.1 $
|
||||
// $Source$
|
||||
// $Date: 2006-11-08 22:44:30 +0100 (Wed, 08 Nov 2006) $
|
||||
// $Revision: 35926 $
|
||||
|
||||
#include <boost/mpl/aux_/config/workaround.hpp>
|
||||
#include <boost/mpl/aux_/adl_barrier.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/integral_c_tag.hpp,v $
|
||||
// $Date: 2004/09/28 13:56:58 $
|
||||
// $Revision: 1.2 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-28 15:56:59 +0200 (Tue, 28 Sep 2004) $
|
||||
// $Revision: 25453 $
|
||||
|
||||
|
||||
#include <boost/mpl/aux_/adl_barrier.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/lambda.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:41 $
|
||||
// $Revision: 1.5 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/lambda_fwd.hpp>
|
||||
#include <boost/mpl/bind.hpp>
|
||||
|
@ -10,9 +10,9 @@
|
||||
//
|
||||
// See http://www.boost.org/libs/mpl for documentation.
|
||||
|
||||
// $Source: /cvsroot/boost/boost/boost/mpl/lambda_fwd.hpp,v $
|
||||
// $Date: 2004/09/02 15:40:41 $
|
||||
// $Revision: 1.7 $
|
||||
// $Source$
|
||||
// $Date: 2004-09-02 17:41:37 +0200 (Thu, 02 Sep 2004) $
|
||||
// $Revision: 24874 $
|
||||
|
||||
#include <boost/mpl/void_fwd.hpp>
|
||||
#include <boost/mpl/aux_/na.hpp>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user