Boost
Threads by month
- ----- 2026 -----
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- 33 participants
- 33328 discussions
23 Jan '07
Hi!
Without the help of Joaquín Mª López Muñoz I would not know about
boost::tuples::element<N,Tuple>::type, which is a handy tool for
library writers.
Can this be made part of the public interface of tuple and also be
documented as such?
Markus
2
1
[Boost-bugs] [ boost-Support Requests-1642614 ] duplicat initial members -> erase_key postcond. fail
by SourceForge.net 23 Jan '07
by SourceForge.net 23 Jan '07
23 Jan '07
Support Requests item #1642614, was opened at 2007-01-23 09:06
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=207586&aid=1642614&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Larry Evans (cppljevans)
Assigned to: Nobody/Anonymous (nobody)
Summary: duplicat initial members -> erase_key postcond. fail
Initial Comment:
has_key<erase_key<set<T,T>,T>::type>type::value==true
in violation of Postcondition on
http://www.boost.org/libs/mpl/doc/refmanual/erase-key.html .
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=207586&aid=1642614&group_…
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-bugs mailing list
Boost-bugs(a)lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/boost-bugs
1
0
Why is checked_deleter class not templated on function arg instead of class?
by Marcus Lindblom 23 Jan '07
by Marcus Lindblom 23 Jan '07
23 Jan '07
Hi,
I'd really want to do just: for_each(..., ..., checked_deleter());
* Is it because of argument_type? (I'd guess so)
* Is it necessary to define argument_type as it is, and not with a
lookup on args (as in BLL) ?
Cheers,
/Marcus
1
0
In my case, I specialized the value_initialized template like this
#include<boost/utility/value_init.hpp>
namespace boost
{
namespace vinit_detail
{
template<class T>
class const_T_base<fugu::vector2_t<T> >
{
protected :
const_T_base() : x(0,0) {}
fugu::vector2_t<T> x;
};
template<class T>
struct non_const_T_base<fugu::vector2_t<T> >
{
protected :
non_const_T_base() : x(0,0) {}
mutable fugu::vector2_t<T> x;
} ;
} // namespace
} // namespace
and then I can do
fugu::vector2_t<float> y; // no initialization
boost::value_initialized<fugu::vector2_t<float> > x; // now x is [0,0]
but I'm not sure if it is a good solution...
By the way, the lib can be downloaded at:
http://sourceforge.net/projects/fugu-lib/
It has small vectors and matrices with support for serialization and
iterators
and some other things.
Est.
1
0
Is there a generic way to to initialize to zero an object representing a
point in a linear space? I know the base types can be constructed like
int foo(0);
or
double bar(0);
but but if I have a three-vector class, I don't want to give it
Vector::Vector(double);
because Vector(2) makes no sense. (Should Vector(2) make the Vector (2, 0,
0) or the Vector (2, 2, 2)?) I also would rather have Vector() create three
uninitialized doubles rather than default-constructing (0,0,0).
I know SGI's extension of MonoidOperation concept has an identity_element
function to go with it (see http://www.sgi.com/tech/stl/MonoidOperation.html)
but that's not widely supported.
So, what's the best way to initialize a generic point in a linear space to
zero before, e.g., adding up a bunch of points?
—Ben
4
4
Boost Regression test failures
Report time: 2007-01-21T01:40:48Z
This report lists all regression test failures on release platforms.
Detailed report:
http://engineering.meta-comm.com/boost-regression/CVS-RC_1_34_0/developer/i…
The following platforms have a large number of failures:
borland-5.8.2
intel-linux-9.0
msvc-6.5
2890 failures in 32 libraries (743 are from non-broken platforms)
algorithm/string (0 of 1 failures are from non-broken platforms)
bind (1 of 2 failures are from non-broken platforms)
config (25 of 31 failures are from non-broken platforms)
conversion (0 of 1 failures are from non-broken platforms)
date_time (332 of 434 failures are from non-broken platforms)
filesystem (2 of 4 failures are from non-broken platforms)
function (86 of 103 failures are from non-broken platforms)
functional/hash (0 of 1 failures are from non-broken platforms)
graph (0 of 2 failures are from non-broken platforms)
io (0 of 1 failures are from non-broken platforms)
iostreams (14 of 24 failures are from non-broken platforms)
iterator (3 of 7 failures are from non-broken platforms)
math (1 of 3 failures are from non-broken platforms)
multi_index (0 of 4 failures are from non-broken platforms)
numeric/interval (77 of 93 failures are from non-broken platforms)
optional (0 of 1 failures are from non-broken platforms)
parameter (0 of 2 failures are from non-broken platforms)
program_options (0 of 7 failures are from non-broken platforms)
ptr_container (0 of 1 failures are from non-broken platforms)
python (1 of 61 failures are from non-broken platforms)
random (10 of 11 failures are from non-broken platforms)
rational (0 of 1 failures are from non-broken platforms)
regex (166 of 241 failures are from non-broken platforms)
serialization (0 of 1771 failures are from non-broken platforms)
signals (0 of 6 failures are from non-broken platforms)
smart_ptr (0 of 1 failures are from non-broken platforms)
spirit (14 of 21 failures are from non-broken platforms)
statechart (0 of 2 failures are from non-broken platforms)
test (4 of 36 failures are from non-broken platforms)
thread (1 of 8 failures are from non-broken platforms)
utility (1)
wave (5 of 8 failures are from non-broken platforms)
Test failures marked with a (*) represent tests that failed on
platforms that are considered broken. They are likely caused by
misconfiguration by the regression tester or a failure in a core
library such as Test or Config.
|algorithm/string|
regex: intel-linux-9.0*
|bind|
mem_fn_eq_test: msvc-6.5* msvc-8.0
|config|
abi_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
config_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
config_link_test: intel-linux-9.0*
config_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
limits_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
math_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|conversion|
lexical_cast_test: msvc-6.5*
|date_time|
testc_local_adjustor: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testclock: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testclocks: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testcustom_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_duration: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_duration_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_facet_new: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_facet_new_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_input_facet_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdate_iterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdate_iterator_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testdst_rules: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testdst_transition_day_rule: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testduration: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testfacet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testfacet_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testfiletime_functions: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testformatters: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testformatters_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgenerators: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* qcc-3.3.5_gpp
testgenerators_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_cal: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_cal_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_day: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_day_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_duration_operators: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_durations: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_durations_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_month: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_month_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize_dll: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_serialize_xml: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testgreg_wstream: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_year: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testgreg_year_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testiterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_adjustor: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_iterator: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testlocal_time_period: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testmicrosec_time_clock: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
testparse_date: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testparse_time: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testperiod: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testperiod_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testposix_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
teststreams: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_formatters: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_input_facet: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_period: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtime_serialize: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_std_config: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_xml: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_serialize_xml_std_config: borland-5.8.2* borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
testtime_wstream: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testtz_database: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testwcustom_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
testwposix_time_zone: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|filesystem|
operations_test_dll: intel-linux-9.0*
path_test: msvc-8.0
path_test_dll: intel-linux-9.0* msvc-8.0
|function|
allocator_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
contains2_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
contains_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
function_arith_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_arith_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_n_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_ref_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
function_ref_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
lambda_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
lib_function_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
mem_fun_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
mem_fun_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
stateless_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
std_bind_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
std_bind_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
sum_avg_cxx98: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
sum_avg_portable: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
|functional/hash|
hash_float_test: msvc-6.5*
|graph|
graphviz_test: intel-linux-9.0*
serialize: intel-linux-9.0*
|io|
ios_state_test: borland-5.8.2*
|iostreams|
bzip2_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
code_converter_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
file_descriptor_test: msvc-6.5*
gzip_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
newline_test: borland-5.8.2* msvc-6.5*
regex_filter_test: intel-linux-9.0*
restrict_test: msvc-6.5*
seekable_file_test: msvc-6.5*
zlib_test: hp_cxx-71_006_tru64 intel-linux-9.0* msvc-7.1 msvc-8.0
|iterator|
filter_iterator_test: borland-5.8.2* msvc-6.5* msvc-8.0
lvalue_concept_fail: borland-5.8.2* msvc-6.5* msvc-7.1 msvc-8.0
|math|
common_factor_test: borland-5.8.2*
complex_test: msvc-8.0
log1p_expm1_test: msvc-6.5*
|multi_index|
test_hash_ops: msvc-6.5*
test_serialization: intel-linux-9.0* msvc-6.5* msvc-6.5*
|numeric/interval|
add: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_exn: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_exp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_lex: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_set: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
cmp_tribool: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
det: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
fmod: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
integer: msvc-8.0
mul: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
overflow: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
pi: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
pow: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
test_float: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-8.0
|optional|
optional_test: borland-5.8.2*
|parameter|
earwicker: msvc-6.5*
python_test: intel-linux-9.0*
|program_options|
cmdline_test_dll: intel-linux-9.0*
options_description_test_dll: intel-linux-9.0*
parsers_test_dll: intel-linux-9.0*
positional_options_test_dll: intel-linux-9.0*
unicode_test_dll: intel-linux-9.0*
variable_map_test_dll: intel-linux-9.0*
winmain_dll: intel-linux-9.0*
|ptr_container|
serialization: intel-linux-9.0*
|python|
andreas_beyer: intel-linux-9.0*
args: intel-linux-9.0*
auto_ptr: intel-linux-9.0*
back_reference: intel-linux-9.0*
bases: intel-linux-9.0*
ben_scott1: intel-linux-9.0*
bienstman1: intel-linux-9.0*
bienstman2: intel-linux-9.0*
bienstman3: intel-linux-9.0*
callbacks: intel-linux-9.0*
const_argument: intel-linux-9.0*
crossmod_exception: intel-linux-9.0*
crossmod_opaque: intel-linux-9.0*
data_members: intel-linux-9.0*
defaults: intel-linux-9.0*
dict: intel-linux-9.0*
docstring: intel-linux-9.0*
enum: intel-linux-9.0*
exception_translator: intel-linux-9.0*
exec: msvc-8.0
extract: intel-linux-9.0*
implicit: intel-linux-9.0*
injected: intel-linux-9.0*
iterator: intel-linux-9.0*
keywords: intel-linux-9.0*
list: intel-linux-9.0*
long: intel-linux-9.0*
minimal: intel-linux-9.0*
multi_arg_constructor: intel-linux-9.0*
nested: intel-linux-9.0*
numpy: intel-linux-9.0*
object: intel-linux-9.0*
opaque: intel-linux-9.0*
operators: intel-linux-9.0*
pearu1: intel-linux-9.0*
pickle1: intel-linux-9.0*
pickle2: intel-linux-9.0*
pickle3: intel-linux-9.0*
pickle4: intel-linux-9.0*
pointee: intel-linux-9.0*
pointer_type_id_test: intel-linux-9.0*
pointer_vector: intel-linux-9.0*
polymorphism: intel-linux-9.0*
polymorphism2: intel-linux-9.0*
polymorphism2_auto_ptr: intel-linux-9.0*
properties: intel-linux-9.0*
raw_ctor: intel-linux-9.0*
return_arg: intel-linux-9.0*
shared_ptr: intel-linux-9.0*
slice: intel-linux-9.0*
staticmethod: intel-linux-9.0*
stl_iterator: intel-linux-9.0*
str: intel-linux-9.0*
test_pointer_adoption: intel-linux-9.0*
try: intel-linux-9.0*
tuple: intel-linux-9.0*
upcast: intel-linux-9.0*
vector_indexing_suite: intel-linux-9.0*
virtual_functions: intel-linux-9.0*
voidptr: intel-linux-9.0*
wrapper_held_type: intel-linux-9.0*
|random|
random_demo: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
random_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64
|rational|
rational_test: msvc-6.5*
|regex|
bad_expression_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
captures_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
captures_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
collate_info: intel-linux-9.0* intel-linux-9.0*
credit_card_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
grep: intel-linux-9.0* intel-linux-9.0*
icu_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
mfc_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
object_cache_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
partial_regex_grep: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
partial_regex_match: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
posix_api_check: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
posix_api_check_cpp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
recursion_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_config_info: borland-5.8.2* gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
regex_dll_config_info: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_3: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_grep_example_4: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_iterator_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_match_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_merge_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_regress: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* msvc-6.5*
regex_regress_dll: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0* msvc-6.5*
regex_regress_threaded: intel-linux-9.0* msvc-6.5*
regex_replace_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_search_example: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_split_example_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_split_example_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_timer: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_token_iterator_eg_1: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
regex_token_iterator_eg_2: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
static_mutex_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
test_collate_info: intel-linux-9.0*
test_grep: intel-linux-9.0* sun-5.8
unicode_iterator_test: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
wide_posix_api_check_cpp: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0* intel-linux-9.0*
|serialization|
test_array_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_array_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_binary_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_load_binary_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_binary_archive_dll: borland-5.8.2* msvc-6.5*
test_class_info_load_text_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_text_archive_dll: borland-5.8.2* msvc-6.5*
test_class_info_load_text_warchive: borland-5.8.2* msvc-6.5*
test_class_info_load_text_warchive_dll: borland-5.8.2*
test_class_info_load_xml_archive: borland-5.8.2* msvc-6.5*
test_class_info_load_xml_archive_dll: borland-5.8.2* msvc-6.5*
test_class_info_load_xml_warchive: borland-5.8.2* msvc-6.5*
test_class_info_load_xml_warchive_dll: borland-5.8.2* msvc-6.5*
test_class_info_save_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_class_info_save_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_contained_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo: borland-5.8.2* borland-5.8.2*
test_demo_auto_ptr: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_auto_ptr_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_exception: borland-5.8.2* borland-5.8.2*
test_demo_exception_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_fast_archive: borland-5.8.2* borland-5.8.2*
test_demo_fast_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_pimpl: borland-5.8.2* borland-5.8.2*
test_demo_pimpl_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_polymorphic: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_polymorphic_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_portable_archive: borland-5.8.2* borland-5.8.2*
test_demo_portable_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_shared_ptr: borland-5.8.2* borland-5.8.2*
test_demo_shared_ptr_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_demo_xml: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_xml_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_demo_xml_load: borland-5.8.2*
test_demo_xml_load_dll: borland-5.8.2*
test_demo_xml_save: borland-5.8.2* borland-5.8.2*
test_demo_xml_save_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_deque_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_deque_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_derived_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_diamond_binary_archive: borland-5.8.2* borland-5.8.2*
test_diamond_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_diamond_text_archive: borland-5.8.2* borland-5.8.2*
test_diamond_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_diamond_text_warchive: borland-5.8.2* borland-5.8.2*
test_diamond_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_diamond_xml_archive: borland-5.8.2* borland-5.8.2*
test_diamond_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_diamond_xml_warchive: borland-5.8.2* borland-5.8.2*
test_diamond_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_exported_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_exported_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_list_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_map_binary_archive: borland-5.8.2* borland-5.8.2*
test_map_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_map_text_archive: borland-5.8.2* borland-5.8.2*
test_map_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_map_text_warchive: borland-5.8.2* borland-5.8.2*
test_map_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_map_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_map_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_mi_binary_archive: borland-5.8.2* borland-5.8.2*
test_mi_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mi_text_archive: borland-5.8.2* borland-5.8.2*
test_mi_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mi_text_warchive: borland-5.8.2* borland-5.8.2*
test_mi_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mi_xml_archive: borland-5.8.2* borland-5.8.2*
test_mi_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mi_xml_warchive: borland-5.8.2* borland-5.8.2*
test_mi_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_mult_archive_types: borland-5.8.2* borland-5.8.2*
test_mult_archive_types_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_multiple_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_binary_archive: msvc-6.5* msvc-6.5*
test_no_rtti_binary_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_text_archive: msvc-6.5* msvc-6.5*
test_no_rtti_text_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_text_warchive: msvc-6.5* msvc-6.5*
test_no_rtti_text_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_xml_archive: msvc-6.5* msvc-6.5*
test_no_rtti_xml_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_no_rtti_xml_warchive: msvc-6.5* msvc-6.5*
test_no_rtti_xml_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_null_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_nvp_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_object_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_optional_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_polymorphic_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_primitive_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_private_ctor: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_private_ctor_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_recursion_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_registered_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_reset_object_address: borland-5.8.2* borland-5.8.2*
test_reset_object_address_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
test_set_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_set_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_simple_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_split_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_tracking_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_unregistered_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_utf8_codecvt: borland-5.8.2*
test_variant_binary_archive: msvc-6.5* msvc-6.5*
test_variant_binary_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_text_archive: msvc-6.5* msvc-6.5*
test_variant_text_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_text_warchive: msvc-6.5* msvc-6.5*
test_variant_text_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_xml_archive: msvc-6.5* msvc-6.5*
test_variant_xml_archive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_variant_xml_warchive: msvc-6.5* msvc-6.5*
test_variant_xml_warchive_dll: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_binary_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_archive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_vector_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_warchive_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_void_cast: borland-5.8.2* borland-5.8.2*
test_void_cast_dll: borland-5.8.2* borland-5.8.2* intel-linux-9.0*
|signals|
dead_slot_test: intel-linux-9.0*
deletion_test: intel-linux-9.0*
ordering_test: intel-linux-9.0*
signal_n_test: intel-linux-9.0*
signal_test: intel-linux-9.0*
trackable_test: intel-linux-9.0*
|smart_ptr|
atomic_count_test: msvc-6.5*
|spirit|
action_tests: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
action_tests_debug: gcc-3.2.3_linux gcc-3.3.6_linux gcc-3.4.5_linux gcc-3.4.5_linux_x86_64 gcc-4.1.0_linux_x86_64 intel-linux-9.0*
bug_000008: intel-linux-9.0*
grammar_mt_tests: intel-linux-9.0*
owi_mt_tests: intel-linux-9.0*
scoped_lock_tests: intel-linux-9.0*
scoped_lock_tests_debug: intel-linux-9.0*
symbols_add_null: msvc-7.1 msvc-8.0
symbols_add_null_debug: msvc-7.1 msvc-8.0
|statechart|
DllTestNative: intel-linux-9.0*
DllTestNormal: intel-linux-9.0*
|test|
boost_check_equal_str: intel-linux-9.0* msvc-6.5* msvc-6.5*
errors_handling_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
fixed_mapping_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
ifstream_line_iterator_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
output_test_stream_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
parameterized_test_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
prg_exec_fail2: darwin-4.0.1
prg_exec_fail3: borland-5.8.2* cw-9.4 msvc-6.5* msvc-7.1 msvc-8.0
result_report_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
test_case_template_test: borland-5.8.2* intel-linux-9.0* msvc-6.5* msvc-6.5*
test_fp_comparisons: intel-linux-9.0*
test_tools_test: intel-linux-9.0* msvc-6.5* msvc-6.5*
token_iterator_test: intel-linux-9.0*
|thread|
test_barrier: intel-linux-9.0*
test_condition: intel-linux-9.0*
test_mutex: intel-linux-9.0*
test_once: intel-linux-9.0*
test_thread: intel-linux-9.0*
test_tss: intel-linux-9.0*
test_tss_lib: msvc-8.0
test_xtime: intel-linux-9.0*
|utility|
operators_test: gcc-3.4.5_linux_x86_64
|wave|
test_re2c_lexer: hp_cxx-71_006_tru64 intel-linux-9.0*
test_slex_lexer: hp_cxx-71_006_tru64 intel-linux-9.0*
testwave: msvc-8.0
testwave_dll: hp_cxx-71_006_tru64 intel-linux-9.0* sun-5.8
1
0
this is a repeate of the previous message, but with the correct file name. it is strings, not strkings .... oops
Valgrind complains
==6809== Conditional jump or move depends on uninitialised value(s)
==6809== at 0x1BAB1CF8: strftime_l (in /lib/libc-2.3.5.so)
==6809== by 0x1B9D83BD: std::__timepunct<char>::_M_put(char*, unsigned, char const*, tm const*) const (in /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.6/libstdc++.so.5.0.7)
==6809== by 0x1B9AF8FC: std::time_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::do_put(std::ostreambuf_iterator<char, std::char_traits<char> >, std::ios_base&, char, tm const*, char, char) const (in /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.6/libstdc++.so.5.0.7)
==6809== by 0x1B9AF6AB: _ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmPKcSB_ (in /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.6/libstdc++.so.5.0.7)
==6809== by 0x806779C: std::vector<std::basic_string<char, std::char_traits<char>, std::allocator<char>
>, std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > boost::date_time::gather_month_strings<char>(std::locale const&, bool) (strings_from_facet.hpp:57)
==6809== by 0x8058D68: boost::date_time::format_date_parser<boost::gregorian::date, char>::format_date_parser(std::string const&, std::locale const&) (format_date_parser.hpp:152)
==6809== by 0x8057D0E: boost::date_time::date_input_facet<boost::gregorian::date, char, std::istreambuf_iterator<char, std::char_traits<char> > >::date_input_facet(std::string const&, unsigned) (date_facet.hpp:476)
==6809== by 0x80553D8: boost::date_time::time_input_facet<boost::posix_time::ptime, char, std::istreambuf_iterator<char, std::char_traits<char> > >::time_input_facet(unsigned) (time_facet.hpp:660)
==6809== by 0x80532EB:
_ZN5boost10local_timersIcSt11char_traitsIcEEERSt13basic_istreamIT_T0_ES8_RNS0_20local_date_time_baseINS_10posix_time5ptimeENS_9date_time14time_zone_baseISB_cEEEE (
You can get this error by compiling the program io_tutorial.cpp and running it under valgrind.
I fixed the problem by calling memset, to initialize the variable tm_value to 0. I put this at lines 54 and 107 of the header file.
diff produces this output:
54d53
< memset( &tm_value, 0, sizeof(tm_value));
107d105
< memset( &tm_value, 0, sizeof(tm_value));
Now Valgrind is happy
---------------------------------
Never Miss an Email
Stay connected with Yahoo! Mail on your mobile. Get started!
1
0
[Boost-bugs] [ boost-Bugs-1641750 ] remove_edge core dumps on self-circle
by SourceForge.net 22 Jan '07
by SourceForge.net 22 Jan '07
22 Jan '07
Bugs item #1641750, was opened at 2007-01-22 08:08
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1641750&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: graph
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Jeremy Siek (jsiek)
Summary: remove_edge core dumps on self-circle
Initial Comment:
This is uncovered while using in bioconductor's RBGL.
This is tested on boost_1_33_1 with modified test codes, adjacency_list.cpp:
bash-3.00$ cd download/boost_1_33_1/libs/graph/example/
bash-3.00$ diff adjacency_list.cpp bug_remove_vertex.cpp
78a79,81
> // test removal of self-circle
> add_edge(vertex(3, g), vertex(3, g), EdgeProperties("test"), g);
>
88a92,94
> cout << endl << "removing edge (3,3): " << endl;
> remove_edge(vertex(3, g), vertex(3, g), g);
>
bash-3.00$ g++ bug_remove_vertex.cpp -I../../../ -lm
bash-3.00$ ./a.out
0 --joe--> 1
1 --joe--> 0 --curly--> 2 --dick--> 3
2 --curly--> 1 --tom--> 4
3 --dick--> 1 --harry--> 4 --LL--> 3 --LL--> 3
4 --tom--> 2 --harry--> 3
(0,1) (1,2) (1,3) (2,4) (3,4) (3,3)
removing edge (3,3):
*** glibc detected *** double free or corruption (out): 0x0889f288 ***
Aborted (core dumped)
Seems like it needs an additional test for edges like A -- A.
Thanks
lilong(a)isb-sib.ch
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1641750&group_…
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-bugs mailing list
Boost-bugs(a)lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/boost-bugs
1
0
[ Down from 90 on Wednesday ]
Bug count: 89
12 dgregor
10 vladimir_prus
6 nobody
6 beman_dawes
5 nesotto
5 az_sw_dude
4 shammah
4 samuel_k
4 grafik
3 turkanis
3 jsiek
3 jbandela
3 djowel
2 urzuga
2 jmaurer
2 hubert_holin
2 fcacciola
2 dlwalker
2 alnsn
2 agurtovoy
1 pdimov
1 nmusatti
1 mistevens
1 mclow
1 johnmaddock
1 daniel_wallin
1 aaron_windsor
Assignee: aaron_windsor <http://sourceforge.net/users/aaron_windsor/>
Summary: top-level configure is broken
Bug #: 1598153
<http://sourceforge.net/tracker/index.php?func=detail&aid=1598153&group_id=7…>
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: mpl::remove compile error with gcc 4.1.0
Bug #: 1453180
<http://sourceforge.net/tracker/index.php?func=detail&aid=1453180&group_id=7…>
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: documentation mistake
Bug #: 1497329
<http://sourceforge.net/tracker/index.php?func=detail&aid=1497329&group_id=7…>
Assignee: alnsn <http://sourceforge.net/users/alnsn/>
Summary: lexical_cast & pure virtual functions & VC 8 STL
Bug #: 1358600
<http://sourceforge.net/tracker/index.php?func=detail&aid=1358600&group_id=7…>
Assignee: alnsn <http://sourceforge.net/users/alnsn/>
Summary: boost::any - typeid comparison across shared boundaries
Bug #: 1577259
<http://sourceforge.net/tracker/index.php?func=detail&aid=1577259&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: wrong usage of ios_base::narrow
Bug #: 989487
<http://sourceforge.net/tracker/index.php?func=detail&aid=989487&group_id=75…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: date_time type conversion warning
Bug #: 1069225
<http://sourceforge.net/tracker/index.php?func=detail&aid=1069225&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: from_ftime incorrectly processes FILETIME filled with zeros
Bug #: 1471025
<http://sourceforge.net/tracker/index.php?func=detail&aid=1471025&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: operator<< for gregorian::date_duration not found
Bug #: 1498778
<http://sourceforge.net/tracker/index.php?func=detail&aid=1498778&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: Unused argument warnings in serialization code
Bug #: 1600530
<http://sourceforge.net/tracker/index.php?func=detail&aid=1600530&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: linker error mingw 3.4.5
Bug #: 1426819
<http://sourceforge.net/tracker/index.php?func=detail&aid=1426819&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: VC8 can't find windows.h even though environment is correct!
Bug #: 1468124
<http://sourceforge.net/tracker/index.php?func=detail&aid=1468124&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: Log level names wrong in documentation
Bug #: 1475886
<http://sourceforge.net/tracker/index.php?func=detail&aid=1475886&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: [filesystem] portable_posix_name() may fail on premain call
Bug #: 1509633
<http://sourceforge.net/tracker/index.php?func=detail&aid=1509633&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: significantly different timer class behaviour on Win and Lin
Bug #: 1520489
<http://sourceforge.net/tracker/index.php?func=detail&aid=1520489&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: directory_iterator doesn't work with catch
Bug #: 1576175
<http://sourceforge.net/tracker/index.php?func=detail&aid=1576175&group_id=7…>
Assignee: daniel_wallin <http://sourceforge.net/users/daniel_wallin/>
Summary: [Parameter] Docco error section 2.7.2
Bug #: 1378446
<http://sourceforge.net/tracker/index.php?func=detail&aid=1378446&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: LEDA graph adaptors do not handle hidden nodes properly
Bug #: 1168431
<http://sourceforge.net/tracker/index.php?func=detail&aid=1168431&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: random_vertex/random_edge are unnecessarily inefficient
Bug #: 1204684
<http://sourceforge.net/tracker/index.php?func=detail&aid=1204684&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Document copy_component
Bug #: 1204688
<http://sourceforge.net/tracker/index.php?func=detail&aid=1204688&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: reverse_graph and constness of property maps
Bug #: 1246336
<http://sourceforge.net/tracker/index.php?func=detail&aid=1246336&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Bundled graph properties
Bug #: 1420498
<http://sourceforge.net/tracker/index.php?func=detail&aid=1420498&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Dijkstra no_init version should not require VertexListGraph
Bug #: 1540116
<http://sourceforge.net/tracker/index.php?func=detail&aid=1540116&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Johnson All-Pairs needs better 'no path' information
Bug #: 1567811
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567811&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Numbered headers don't work with 'preferred' syntax
Bug #: 1567812
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567812&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Fruchterman-Reingold grid performance can be improved
Bug #: 1567818
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567818&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Const correctness violation
Bug #: 1567821
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567821&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Memory leaks in adjacency_list?
Bug #: 1567828
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567828&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Memory leaks with signal::connect?
Bug #: 1567829
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567829&group_id=7…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: Miss ' = ParserT()'
Bug #: 907299
<http://sourceforge.net/tracker/index.php?func=detail&aid=907299&group_id=75…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: spirit insert_key_actor.hpp
Bug #: 1059936
<http://sourceforge.net/tracker/index.php?func=detail&aid=1059936&group_id=7…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: crash in boost::spirit::parse
Bug #: 1509978
<http://sourceforge.net/tracker/index.php?func=detail&aid=1509978&group_id=7…>
Assignee: dlwalker <http://sourceforge.net/users/dlwalker/>
Summary: boost/crc.hpp uses non-standard conforming syntax
Bug #: 1478435
<http://sourceforge.net/tracker/index.php?func=detail&aid=1478435&group_id=7…>
Assignee: dlwalker <http://sourceforge.net/users/dlwalker/>
Summary: 'Bug' in comment (x2)
Bug #: 1588359
<http://sourceforge.net/tracker/index.php?func=detail&aid=1588359&group_id=7…>
Assignee: fcacciola <http://sourceforge.net/users/fcacciola/>
Summary: Numeric Conversion Documentation minor bug
Bug #: 1480954
<http://sourceforge.net/tracker/index.php?func=detail&aid=1480954&group_id=7…>
Assignee: fcacciola <http://sourceforge.net/users/fcacciola/>
Summary: optional documentation
Bug #: 1587134
<http://sourceforge.net/tracker/index.php?func=detail&aid=1587134&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: boost jam problem with parallel builds
Bug #: 1234224
<http://sourceforge.net/tracker/index.php?func=detail&aid=1234224&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: boost.build needs fixes for HP/UX
Bug #: 1395924
<http://sourceforge.net/tracker/index.php?func=detail&aid=1395924&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Wrong .bat name in vc-8_0-x86_amd64-tools.jam
Bug #: 1548427
<http://sourceforge.net/tracker/index.php?func=detail&aid=1548427&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Generated files '@()' don't work in regular expressions.
Bug #: 1549607
<http://sourceforge.net/tracker/index.php?func=detail&aid=1549607&group_id=7…>
Assignee: hubert_holin <http://sourceforge.net/users/hubert_holin/>
Summary: Cannot compile octonion_test.cpp because of bug in sinc.hpp
Bug #: 751289
<http://sourceforge.net/tracker/index.php?func=detail&aid=751289&group_id=75…>
Assignee: hubert_holin <http://sourceforge.net/users/hubert_holin/>
Summary: octonion documentation bug
Bug #: 1499814
<http://sourceforge.net/tracker/index.php?func=detail&aid=1499814&group_id=7…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: Compiler error for tokenizer on Solaris
Bug #: 976241
<http://sourceforge.net/tracker/index.php?func=detail&aid=976241&group_id=75…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: token_iterator::at_end() result is inversed
Bug #: 1338326
<http://sourceforge.net/tracker/index.php?func=detail&aid=1338326&group_id=7…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: bug in char_separator
Bug #: 1510041
<http://sourceforge.net/tracker/index.php?func=detail&aid=1510041&group_id=7…>
Assignee: jmaurer <http://sourceforge.net/users/jmaurer/>
Summary: Diff in state of mersenne_twister gen between GCC3.41 & CW9
Bug #: 1115124
<http://sourceforge.net/tracker/index.php?func=detail&aid=1115124&group_id=7…>
Assignee: jmaurer <http://sourceforge.net/users/jmaurer/>
Summary: uniform_01 copies engine instead of using a reference
Bug #: 1464566
<http://sourceforge.net/tracker/index.php?func=detail&aid=1464566&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: Adding boost::is_complex to type_traits.hpp
Bug #: 1315712
<http://sourceforge.net/tracker/index.php?func=detail&aid=1315712&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: Spelling of Edmonds-Karp-Algorithm
Bug #: 1226292
<http://sourceforge.net/tracker/index.php?func=detail&aid=1226292&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: Calling subgraph::global_to_local on a root graph
Bug #: 1444271
<http://sourceforge.net/tracker/index.php?func=detail&aid=1444271&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: strange compiling problem for transitive_closure
Bug #: 1489545
<http://sourceforge.net/tracker/index.php?func=detail&aid=1489545&group_id=7…>
Assignee: mclow <http://sourceforge.net/users/mclow/>
Summary: Solaris - once.cpp compile error
Bug #: 549162
<http://sourceforge.net/tracker/index.php?func=detail&aid=549162&group_id=75…>
Assignee: mistevens <http://sourceforge.net/users/mistevens/>
Summary: ublas: bug in mapped_vector_of_mapped_vector
Bug #: 1528178
<http://sourceforge.net/tracker/index.php?func=detail&aid=1528178&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: boost.range and 'const char[]'.
Bug #: 1272315
<http://sourceforge.net/tracker/index.php?func=detail&aid=1272315&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: [Boost.Range]boost::const_begin calls non-qualified 'begin'
Bug #: 1361686
<http://sourceforge.net/tracker/index.php?func=detail&aid=1361686&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: bug in boost::range_detail
Bug #: 1484477
<http://sourceforge.net/tracker/index.php?func=detail&aid=1484477&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: local_time_facet error in VS2005 Win2003
Bug #: 1551784
<http://sourceforge.net/tracker/index.php?func=detail&aid=1551784&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: The ptr_map iterator cannot be dereference to value type
Bug #: 1566672
<http://sourceforge.net/tracker/index.php?func=detail&aid=1566672&group_id=7…>
Assignee: nmusatti <http://sourceforge.net/users/nmusatti/>
Summary: Borland compiler error with Pool, boost::pool_allocator
Bug #: 988124
<http://sourceforge.net/tracker/index.php?func=detail&aid=988124&group_id=75…>
Assignee: nobody
Summary: Shmem serious bugs
Bug #: 1518563
<http://sourceforge.net/tracker/index.php?func=detail&aid=1518563&group_id=7…>
Assignee: nobody
Summary: Changing size of memory-mapped file on Windows
Bug #: 1532684
<http://sourceforge.net/tracker/index.php?func=detail&aid=1532684&group_id=7…>
Assignee: nobody
Summary: Warnings on MSVC 2005
Bug #: 1596577
<http://sourceforge.net/tracker/index.php?func=detail&aid=1596577&group_id=7…>
Assignee: nobody
Summary: MSVC 8 & STLport
Bug #: 1612841
<http://sourceforge.net/tracker/index.php?func=detail&aid=1612841&group_id=7…>
Assignee: nobody
Summary: boost::assignment documentation: mathematical 'typo'
Bug #: 1631893
<http://sourceforge.net/tracker/index.php?func=detail&aid=1631893&group_id=7…>
Assignee: nobody
Summary: concept_check.hpp unused variable warning
Bug #: 1636134
<http://sourceforge.net/tracker/index.php?func=detail&aid=1636134&group_id=7…>
Assignee: pdimov <http://sourceforge.net/users/pdimov/>
Summary: gcc-4.2 atomicity.h location
Bug #: 1599422
<http://sourceforge.net/tracker/index.php?func=detail&aid=1599422&group_id=7…>
Assignee: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: format: assert when parsing invalid pattern
Bug #: 1326132
<http://sourceforge.net/tracker/index.php?func=detail&aid=1326132&group_id=7…>
Assignee: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: boost::format parse method doesn't work
Bug #: 1439607
<http://sourceforge.net/tracker/index.php?func=detail&aid=1439607&group_id=7…>
Assignee: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: 64 bit compile warning/error for boost::format
Bug #: 1451470
<http://sourceforge.net/tracker/index.php?func=detail&aid=1451470&group_id=7…>
Assignee: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: format zero length string msvc-8
Bug #: 1537844
<http://sourceforge.net/tracker/index.php?func=detail&aid=1537844&group_id=7…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: ct_gcd_lcm.hpp compilation error
Bug #: 558174
<http://sourceforge.net/tracker/index.php?func=detail&aid=558174&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: pool::purge_memory() does not reset next_size
Bug #: 984124
<http://sourceforge.net/tracker/index.php?func=detail&aid=984124&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: perfomance: memory cleanup for pool takes too long
Bug #: 995270
<http://sourceforge.net/tracker/index.php?func=detail&aid=995270&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: boost::pool_allocator breaks with vector of vectors
Bug #: 1179641
<http://sourceforge.net/tracker/index.php?func=detail&aid=1179641&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: problem with boost::iostreams when compiled with Visual C++
Bug #: 1365752
<http://sourceforge.net/tracker/index.php?func=detail&aid=1365752&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: bug in iostreams/copy.hpp line 81
Bug #: 1610369
<http://sourceforge.net/tracker/index.php?func=detail&aid=1610369&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: iostreams::tee_filter is for output only
Bug #: 1612981
<http://sourceforge.net/tracker/index.php?func=detail&aid=1612981&group_id=7…>
Assignee: urzuga <http://sourceforge.net/users/urzuga/>
Summary: [boost::lambda] Compile error with libstdc++ debug mode
Bug #: 1444052
<http://sourceforge.net/tracker/index.php?func=detail&aid=1444052&group_id=7…>
Assignee: urzuga <http://sourceforge.net/users/urzuga/>
Summary: Lambda: (_1 + 'y')(string('x')) Doesn't Compile
Bug #: 1602075
<http://sourceforge.net/tracker/index.php?func=detail&aid=1602075&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: multitoken broken in program_options 1.33
Bug #: 1266877
<http://sourceforge.net/tracker/index.php?func=detail&aid=1266877&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Fixes for build on IBM pSeries for AIX and Linux
Bug #: 1446471
<http://sourceforge.net/tracker/index.php?func=detail&aid=1446471&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Boost Jam, and non english directorys
Bug #: 1480900
<http://sourceforge.net/tracker/index.php?func=detail&aid=1480900&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: program_options: format_paragraph assert fails on long line
Bug #: 1485069
<http://sourceforge.net/tracker/index.php?func=detail&aid=1485069&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: boost 1.33.1 build error
Bug #: 1487256
<http://sourceforge.net/tracker/index.php?func=detail&aid=1487256&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: [program_options] Endless loop with long default arguments
Bug #: 1528399
<http://sourceforge.net/tracker/index.php?func=detail&aid=1528399&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Parameter reversal in program_options documentation
Bug #: 1574213
<http://sourceforge.net/tracker/index.php?func=detail&aid=1574213&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Function name error in program_options documentation
Bug #: 1574751
<http://sourceforge.net/tracker/index.php?func=detail&aid=1574751&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: program_options find assert fails with multibyte characters
Bug #: 1594324
<http://sourceforge.net/tracker/index.php?func=detail&aid=1594324&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: [program_options] parse_config_file documentation bug
Bug #: 1632327
<http://sourceforge.net/tracker/index.php?func=detail&aid=1632327&group_id=7…>
--
-- Marshall
Marshall Clow Idio Software <mailto:marshall@idio.com>
It is by caffeine alone I set my mind in motion.
It is by the beans of Java that thoughts acquire speed,
the hands acquire shaking, the shaking becomes a warning.
It is by caffeine alone I set my mind in motion.
1
0
[ Unchanged from Wednesday ]
Patch count: 16
3 vladimir_prus
2 rogeeff
2 agurtovoy
1 turkanis
1 pdimov
1 nobody
1 jsiek
1 johnmaddock
1 grafik
1 dlwalker
1 david_abrahams
1 anthonyw
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: Adjusts mpl::pair concept to be compatible with STL pairs
Bug #: 1489713
<http://sourceforge.net/tracker/index.php?func=detail&aid=1489713&group_id=7…>
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: [mpl] evc4 port
Bug #: 1583396
<http://sourceforge.net/tracker/index.php?func=detail&aid=1583396&group_id=7…>
Assignee: anthonyw <http://sourceforge.net/users/anthonyw/>
Summary: [thread] MSVS: Allow use of thread headers with /Za
Bug #: 1627420
<http://sourceforge.net/tracker/index.php?func=detail&aid=1627420&group_id=7…>
Assignee: david_abrahams <http://sourceforge.net/users/david_abrahams/>
Summary: new links in boost homepage:Meta-Comm,IRC
Bug #: 1612399
<http://sourceforge.net/tracker/index.php?func=detail&aid=1612399&group_id=7…>
Assignee: dlwalker <http://sourceforge.net/users/dlwalker/>
Summary: [integer] add support for integers longer than long
Bug #: 1507034
<http://sourceforge.net/tracker/index.php?func=detail&aid=1507034&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: bjam: always define OSPLAT
Bug #: 1619769
<http://sourceforge.net/tracker/index.php?func=detail&aid=1619769&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: [config] evc4 port
Bug #: 1489359
<http://sourceforge.net/tracker/index.php?func=detail&aid=1489359&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: [concept_check.hpp] remove unused variable warning in msvc
Bug #: 1388901
<http://sourceforge.net/tracker/index.php?func=detail&aid=1388901&group_id=7…>
Assignee: nobody
Summary: [archive] codecvt_null.hpp won't compile on QNX
Bug #: 1636855
<http://sourceforge.net/tracker/index.php?func=detail&aid=1636855&group_id=7…>
Assignee: pdimov <http://sourceforge.net/users/pdimov/>
Summary: support for weak_ptr binding
Bug #: 1633503
<http://sourceforge.net/tracker/index.php?func=detail&aid=1633503&group_id=7…>
Assignee: rogeeff <http://sourceforge.net/users/rogeeff/>
Summary: [test] no eh exception handling functions on evc4
Bug #: 1499418
<http://sourceforge.net/tracker/index.php?func=detail&aid=1499418&group_id=7…>
Assignee: rogeeff <http://sourceforge.net/users/rogeeff/>
Summary: [test] evc4 issue with SEH support
Bug #: 1583399
<http://sourceforge.net/tracker/index.php?func=detail&aid=1583399&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: iostreams // file_descriptor::seek BUG on files > 4 GB
Bug #: 1452698
<http://sourceforge.net/tracker/index.php?func=detail&aid=1452698&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: [program_options] static const variable on evc4
Bug #: 1499420
<http://sourceforge.net/tracker/index.php?func=detail&aid=1499420&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: [program_options] putenv on Solaris
Bug #: 1568191
<http://sourceforge.net/tracker/index.php?func=detail&aid=1568191&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: VC80-Compatible String Processing in format_paragraph()
Bug #: 1580068
<http://sourceforge.net/tracker/index.php?func=detail&aid=1580068&group_id=7…>
--
-- Marshall
Marshall Clow Idio Software <mailto:marshall@idio.com>
It is by caffeine alone I set my mind in motion.
It is by the beans of Java that thoughts acquire speed,
the hands acquire shaking, the shaking becomes a warning.
It is by caffeine alone I set my mind in motion.
1
0