Boost
Threads by month
- ----- 2026 -----
- July
- June
- May
- 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
- 33386 discussions
There are some more errors from the revised Boost.Test code when building
with /D"_UNICODE" /D"UNICODE": which is the default behaviour for new
projects created with the VC8 IDE. The errors are:
c:\data\boost\boost\trunk\boost\test\impl\debug.ipp(794) : error C2664:
'LONG (HKEY,LPCTSTR,PHKEY)' : cannot convert parameter 2 from 'const char
[53]' to 'LPCTSTR'
Types pointed to are unrelated; conversion requires reinterpret_cast,
C-style cast or function-style cast
c:\data\boost\boost\trunk\boost\test\impl\debug.ipp(807) : error C2664:
'LONG (HKEY,LPTSTR,LPDWORD,LPDWORD,LPBYTE,LPDWORD)' : cannot convert
parameter 2 from 'const char [9]' to 'LPTSTR'
Types pointed to are unrelated; conversion requires reinterpret_cast,
C-style cast or function-style cast
c:\data\boost\boost\trunk\boost\test\impl\debug.ipp(807) : error C2664:
'LONG (HKEY,LPTSTR,LPDWORD,LPDWORD,LPBYTE,LPDWORD)' : cannot convert
parameter 1 from 'LPDWORD' to 'HKEY'
Types pointed to are unrelated; conversion requires reinterpret_cast,
C-style cast or function-style cast
c:\data\boost\boost\trunk\boost\test\impl\debug.ipp(843) : error C2664:
'CreateProcessW' : cannot convert parameter 2 from 'char [200]' to 'LPWSTR'
Types pointed to are unrelated; conversion requires reinterpret_cast,
C-style cast or function-style cast
Which can likely be easily solved by adding an "A" suffix to the Win32 API
calls. Whether these are all the errors, or just the first ones to get
reported is another matter...
John.
2
1
Hi,
I'm creating a GUI library (still in pre-alpha) using the named
parameter library for the create function.
It has a interface like this:
wnd_lock<frame_window> w = create<frame_window>( _driver = gtk
, _pos = std::make_pair(20, 20), _size = std::make_pair(600, 400) );
Until here everything is alright.
But, for some controls, we must have extended keywords:
wnd_lock<text_box> text = create<text_box>( _parent = w, _pos =
std::make_pair(0, 0)
, text_box::_multi_line = true );
Is it achievable?
Thanks in advance,
--
Felipe Magno de Almeida
2
4
Hi,
I have written a refinement on boost::mutex that allows for it to be
interrupted while waiting to acquire the mutex by altering a predicate
(once the mutex is acquired, it acts like a regular mutex).
Here is the code:
http://www.neuromancy.net/fisheye/browse/mantra/trunk/Mantra-I/mantra/utils…
It has been fully unit tested. The idea is simple, using an
interruptable_mutex operates exactly like a boost::mutex normally, so
boost::interruptable_mutex mtx;
{
boost::interruptable_mutex::scoped_lock sl(mtx);
...
}
All fine.
However, if you want the ability to be able to interrupt the mutex while
blocked waiting to acquire, you could do:
boost::interruptable_mutex mtx;
boost::interruptable_pred pred(mtx);
{
boost::interruptable_pred::scoped_lock sl(pred);
...
}
Then in another thread, I could call:
pred(true);
and it will throw an exception in the thread waiting to acquire the
scoped_lock. This works when waiting on reacquisition of a lock after
a condition just as well, eg:
{
boost::interruptable_pred::scoped_lock sl(pred);
...
boost::condition cond;
cond.wait(sl);
// Assuming we got signaled, we would reacquire sl, however if
// multiple threads were trying to acquire sl, we could block
// waiting for the lock re-acquisition, that is breakable.
}
In addition to this, the implementation I have allows you to register
a callback function that will be invoked in place of just throwing an
exception.
The reason the interruptable_pred is a separate class is that you may
want multiple predicates associated with the same lock. For example
a situation where the lock is for a queue, and you are pushing multiple
messages to that queue. Each message would have a interruptable_pred
created for it, but constructed with the same interruptable_mutex, the
one guarding the queue. This way you can interrupt the lock acquire
for a single message only without interrupting others also waiting.
As with all my submissions, do with it as you please. I have unit
tested it, and it works here. I just don't believe this should be
submitted as a separate component, but more folded into boost::thread.
PreZ :)
2
2
Boost regression test failures
Report time: 2007-10-25T10:36:50Z
This report lists all regression test failures on release platforms.
Detailed report:
http://boost.org/regression/trunk/developer/issues.html
The following platforms have a large number of failures:
borland-5.6.4
borland-5.8.2
hp_cxx-71_006_tru64
3887 failures in 65 libraries (339 are from non-broken platforms)
algorithm/minmax (0 of 4 failures are from non-broken platforms)
algorithm/string (0 of 14 failures are from non-broken platforms)
any (0 of 2 failures are from non-broken platforms)
array (0 of 10 failures are from non-broken platforms)
asio (4)
assign (0 of 16 failures are from non-broken platforms)
bimap (23 of 167 failures are from non-broken platforms)
bind (0 of 46 failures are from non-broken platforms)
circular_buffer (0 of 8 failures are from non-broken platforms)
concept_check (5 of 21 failures are from non-broken platforms)
config (0 of 10 failures are from non-broken platforms)
conversion (6 of 22 failures are from non-broken platforms)
crc (0 of 2 failures are from non-broken platforms)
date_time (0 of 107 failures are from non-broken platforms)
disjoint_sets (0 of 2 failures are from non-broken platforms)
dynamic_bitset (1 of 10 failures are from non-broken platforms)
filesystem (2 of 26 failures are from non-broken platforms)
foreach (3 of 28 failures are from non-broken platforms)
format (0 of 8 failures are from non-broken platforms)
function (0 of 22 failures are from non-broken platforms)
functional (0 of 2 failures are from non-broken platforms)
functional/hash (0 of 54 failures are from non-broken platforms)
fusion (56 of 598 failures are from non-broken platforms)
gil (3 of 9 failures are from non-broken platforms)
graph (8 of 14 failures are from non-broken platforms)
integer (0 of 6 failures are from non-broken platforms)
interprocess (64 of 223 failures are from non-broken platforms)
intrusive (10 of 12 failures are from non-broken platforms)
io (0 of 2 failures are from non-broken platforms)
iostreams (1 of 57 failures are from non-broken platforms)
iterator (0 of 32 failures are from non-broken platforms)
lambda (1)
logic (0 of 6 failures are from non-broken platforms)
math (78 of 387 failures are from non-broken platforms)
mpl (1 of 157 failures are from non-broken platforms)
numeric/conversion (0 of 2 failures are from non-broken platforms)
numeric/interval (0 of 12 failures are from non-broken platforms)
optional (1 of 13 failures are from non-broken platforms)
parameter (0 of 27 failures are from non-broken platforms)
pool (0 of 2 failures are from non-broken platforms)
preprocessor (0 of 28 failures are from non-broken platforms)
program_options (0 of 28 failures are from non-broken platforms)
property_map (0 of 4 failures are from non-broken platforms)
ptr_container (7 of 9 failures are from non-broken platforms)
python (4)
random (0 of 2 failures are from non-broken platforms)
range (8 of 32 failures are from non-broken platforms)
rational (0 of 6 failures are from non-broken platforms)
regex (0 of 73 failures are from non-broken platforms)
serialization (10 of 963 failures are from non-broken platforms)
signals (0 of 10 failures are from non-broken platforms)
smart_ptr (0 of 30 failures are from non-broken platforms)
spirit (3)
static_assert (0 of 4 failures are from non-broken platforms)
system (0 of 32 failures are from non-broken platforms)
test (7)
thread (3 of 55 failures are from non-broken platforms)
timer (0 of 2 failures are from non-broken platforms)
tokenizer (0 of 12 failures are from non-broken platforms)
tr1 (2 of 236 failures are from non-broken platforms)
tuple (0 of 6 failures are from non-broken platforms)
type_traits (0 of 100 failures are from non-broken platforms)
typeof (27 of 50 failures are from non-broken platforms)
utility (1 of 30 failures are from non-broken platforms)
variant (0 of 16 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/minmax|
minmax: borland-5.6.4* borland-5.8.2*
minmax_element: borland-5.6.4* borland-5.8.2*
|algorithm/string|
conv: borland-5.6.4* borland-5.8.2*
find: borland-5.6.4* borland-5.8.2*
join: borland-5.6.4* borland-5.8.2*
predicate: borland-5.6.4* borland-5.8.2*
replace: borland-5.6.4* borland-5.8.2*
split: borland-5.6.4* borland-5.8.2*
trim: borland-5.6.4* borland-5.8.2*
|any|
any_test: borland-5.6.4* borland-5.8.2*
|array|
array0: borland-5.6.4* borland-5.8.2*
array1: borland-5.6.4* borland-5.8.2*
array2: borland-5.6.4* borland-5.8.2*
array3: borland-5.8.2*
array4: borland-5.8.2*
array5: borland-5.6.4* borland-5.8.2*
|asio|
ip_multicast: acc
ip_multicast_select: acc
ip_unicast: acc
ip_unicast_select: acc
|assign|
basic: borland-5.6.4* borland-5.8.2*
email_example: borland-5.6.4* borland-5.8.2*
list_inserter: borland-5.6.4* borland-5.8.2*
list_of_workaround: borland-5.6.4* borland-5.8.2*
my_vector_example: borland-5.6.4* borland-5.8.2*
static_list_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
std: borland-5.6.4* borland-5.8.2*
|bimap|
assign: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
foreach: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
lambda: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
property_map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
serialization: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_assign: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_convenience_header: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_extra: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_info: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_bimap_lambda: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_list_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_modify: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_multiset_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_mutable: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_operator_bracket: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_ordered: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_bimap_project: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_property_map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_sequenced: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_serialization: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_set_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_unconstrained: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
test_bimap_unordered: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_bimap_unordered_multiset_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_unordered_set_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_bimap_vector_of: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mutant: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mutant_relation: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_structured_pair: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_tagged: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
typeof: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
xpressive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
|bind|
bind_const_test: borland-5.6.4* borland-5.8.2*
bind_cv_test: borland-5.6.4* borland-5.8.2*
bind_dm2_test: borland-5.6.4* borland-5.8.2*
bind_dm_test: borland-5.6.4* borland-5.8.2*
bind_eq_test: borland-5.6.4* borland-5.8.2*
bind_function_test: borland-5.6.4* borland-5.8.2*
bind_lookup_problem_test: borland-5.6.4* borland-5.8.2*
bind_not_test: borland-5.6.4* borland-5.8.2*
bind_placeholder_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
bind_rel_test: borland-5.6.4* borland-5.8.2*
bind_rv_sp_test: borland-5.6.4* borland-5.8.2*
bind_rvalue_test: borland-5.6.4* borland-5.8.2*
bind_stateful_test: borland-5.6.4* borland-5.8.2*
bind_test: borland-5.6.4* borland-5.8.2*
bind_unary_addr: borland-5.6.4* borland-5.8.2*
bind_visit_test: borland-5.6.4* borland-5.8.2*
mem_fn_derived_test: borland-5.6.4* borland-5.8.2*
mem_fn_dm_test: borland-5.6.4* borland-5.8.2*
mem_fn_eq_test: borland-5.6.4* borland-5.8.2*
mem_fn_rv_test: borland-5.6.4* borland-5.8.2*
mem_fn_test: borland-5.6.4* borland-5.8.2*
mem_fn_void_test: borland-5.6.4* borland-5.8.2*
|circular_buffer|
base_test: borland-5.6.4* borland-5.8.2*
bounded_buffer_comparison: borland-5.6.4* borland-5.8.2*
soft_iterator_invalidation: borland-5.6.4* borland-5.8.2*
space_optimized_test: borland-5.6.4* borland-5.8.2*
|concept_check|
class_concept_check_test: borland-5.6.4* borland-5.8.2*
class_concept_fail_expected: sun-5.8
concept_check_test: borland-5.6.4* borland-5.8.2*
old_concept_class_fail: borland-5.6.4* borland-5.8.2* sun-5.8
old_concept_function_fail: borland-5.6.4* borland-5.8.2* sun-5.8
old_concept_pass: borland-5.6.4* borland-5.8.2*
stl_concept_check: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
usage_fail: sun-5.8
where: borland-5.6.4* borland-5.8.2*
where_fail: sun-5.8
|config|
abi_test: borland-5.6.4* borland-5.8.2*
config_info: borland-5.6.4* borland-5.8.2*
config_link_test: borland-5.6.4* borland-5.8.2*
config_test: borland-5.6.4* borland-5.8.2*
math_info: borland-5.6.4* borland-5.8.2*
|conversion|
cast_test: borland-5.6.4* borland-5.8.2*
implicit_cast: borland-5.6.4* borland-5.8.2*
lexical_cast_loopback_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc msvc-7.1 msvc-8.0 msvc-8.0 sun-5.8
lexical_cast_noncopyable_test: borland-5.6.4* borland-5.8.2*
lexical_cast_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
numeric_cast_test: borland-5.6.4* borland-5.8.2*
|crc|
crc_test: borland-5.6.4* borland-5.8.2*
|date_time|
testc_local_adjustor: borland-5.6.4* borland-5.8.2*
testclock: borland-5.6.4* borland-5.8.2*
testconstrained_value: borland-5.6.4* borland-5.8.2*
testcustom_time_zone: borland-5.8.2*
testdate: borland-5.6.4* borland-5.8.2*
testdate_dll: borland-5.6.4* borland-5.8.2*
testdate_duration: borland-5.6.4* borland-5.8.2*
testdate_duration_dll: borland-5.6.4* borland-5.8.2*
testdate_input_facet: borland-5.6.4* borland-5.8.2*
testdate_input_facet_dll: borland-5.6.4* borland-5.8.2*
testdate_iterator: borland-5.6.4* borland-5.8.2*
testdate_iterator_dll: borland-5.6.4* borland-5.8.2*
testdst_rules: borland-5.6.4* borland-5.8.2*
testdst_transition_day_rule: borland-5.6.4* borland-5.8.2*
testduration: borland-5.6.4* borland-5.8.2*
testfiletime_functions: borland-5.6.4* borland-5.8.2*
testformatters: borland-5.6.4* borland-5.8.2*
testformatters_dll: borland-5.6.4* borland-5.8.2*
testgenerators: borland-5.6.4* borland-5.8.2*
testgenerators_dll: borland-5.6.4* borland-5.8.2*
testgeneric_period: borland-5.6.4* borland-5.8.2*
testgreg_cal: borland-5.6.4* borland-5.8.2*
testgreg_cal_dll: borland-5.6.4* borland-5.8.2*
testgreg_day: borland-5.6.4* borland-5.8.2*
testgreg_day_dll: borland-5.6.4* borland-5.8.2*
testgreg_duration_operators: borland-5.6.4* borland-5.8.2*
testgreg_durations: borland-5.6.4* borland-5.8.2*
testgreg_durations_dll: borland-5.6.4* borland-5.8.2*
testgreg_month: borland-5.6.4* borland-5.8.2*
testgreg_month_dll: borland-5.6.4* borland-5.8.2*
testgreg_serialize: borland-5.6.4* borland-5.8.2*
testgreg_serialize_dll: borland-5.6.4* borland-5.8.2*
testgreg_serialize_xml: borland-5.6.4* borland-5.8.2*
testgreg_year: borland-5.6.4* borland-5.8.2*
testgreg_year_dll: borland-5.6.4* borland-5.8.2*
testgregorian_calendar: borland-5.6.4* borland-5.8.2*
testint_adapter: borland-5.6.4* borland-5.8.2*
testiterator: borland-5.6.4* borland-5.8.2*
testlocal_adjustor: borland-5.6.4* borland-5.8.2*
testparse_time: borland-5.6.4* borland-5.8.2*
testperiod: borland-5.6.4* borland-5.8.2*
testperiod_dll: borland-5.6.4* borland-5.8.2*
testposix_time_zone: borland-5.8.2*
testtime: borland-5.6.4* borland-5.8.2*
testtime_formatters: borland-5.6.4* borland-5.8.2*
testtime_period: borland-5.6.4* borland-5.8.2*
testtime_resolution_traits: borland-5.6.4* borland-5.8.2*
testtime_serialize: borland-5.6.4* borland-5.8.2*
testtime_serialize_std_config: borland-5.6.4* borland-5.8.2*
testtime_serialize_xml: borland-5.6.4* borland-5.8.2*
testtime_serialize_xml_std_config: borland-5.6.4* borland-5.8.2*
testtz_database: borland-5.8.2*
testwcustom_time_zone: borland-5.6.4* borland-5.8.2*
testwposix_time_zone: borland-5.6.4* borland-5.8.2*
testwrapping_int: borland-5.6.4* borland-5.8.2*
|disjoint_sets|
disjoint_set_test: borland-5.6.4* borland-5.8.2*
|dynamic_bitset|
dyn_bitset_unit_tests1: borland-5.6.4* borland-5.8.2*
dyn_bitset_unit_tests2: borland-5.6.4*
dyn_bitset_unit_tests3: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
dyn_bitset_unit_tests4: borland-5.6.4* borland-5.8.2* sun-5.8
|filesystem|
convenience_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
fstream_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
large_file_support_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
operations_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* msvc-7.1
operations_test_dll: msvc-8.0
path_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
simple_ls: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|foreach|
array_byref: borland-5.6.4* borland-5.8.2*
array_byval: borland-5.6.4* borland-5.8.2*
call_once: borland-5.6.4* borland-5.8.2*
cstr_byref: borland-5.6.4* borland-5.8.2*
cstr_byval: borland-5.6.4* borland-5.8.2*
dependent_type: borland-5.6.4* borland-5.8.2*
noncopyable: borland-5.6.4* borland-5.8.2*
pair_byref: borland-5.6.4* borland-5.8.2*
pair_byval: borland-5.6.4* borland-5.8.2*
stl_byref: borland-5.6.4* borland-5.8.2*
stl_byval: borland-5.6.4* borland-5.8.2*
user_defined: acc borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* msvc-8.0
|format|
format_test1: borland-5.6.4* borland-5.8.2*
format_test2: borland-5.6.4* borland-5.8.2*
format_test3: borland-5.6.4* borland-5.8.2*
format_test_wstring: borland-5.6.4* borland-5.8.2*
|function|
allocator_test: borland-5.6.4* borland-5.8.2*
contains2_test: borland-5.6.4* borland-5.8.2*
contains_test: borland-5.6.4* borland-5.8.2*
function_30: borland-5.6.4* borland-5.8.2*
function_arith_portable: borland-5.6.4* borland-5.8.2*
function_n_test: borland-5.6.4* borland-5.8.2*
function_ref_portable: borland-5.6.4* borland-5.8.2*
mem_fun_portable: borland-5.6.4* borland-5.8.2*
stateless_test: borland-5.6.4* borland-5.8.2*
std_bind_portable: borland-5.6.4* borland-5.8.2*
sum_avg_portable: borland-5.6.4* borland-5.8.2*
|functional|
function_test: borland-5.6.4* borland-5.8.2*
|functional/hash|
books: borland-5.6.4* borland-5.8.2*
container_fwd_test: borland-5.6.4* borland-5.8.2*
hash_built_in_array_test: borland-5.6.4* borland-5.8.2*
hash_complex_test: borland-5.6.4* borland-5.8.2*
hash_custom_test: borland-5.6.4* borland-5.8.2*
hash_deprecated_headers: borland-5.6.4* borland-5.8.2*
hash_deque_test: borland-5.6.4* borland-5.8.2*
hash_float_test: borland-5.6.4* borland-5.8.2*
hash_friend_test: borland-5.6.4* borland-5.8.2*
hash_function_pointer_test: borland-5.6.4* borland-5.8.2*
hash_fwd_test_1: borland-5.6.4* borland-5.8.2*
hash_fwd_test_2: borland-5.6.4* borland-5.8.2*
hash_list_test: borland-5.6.4* borland-5.8.2*
hash_long_double_test: borland-5.6.4* borland-5.8.2*
hash_map_test: borland-5.6.4* borland-5.8.2*
hash_no_ext_macro_1: borland-5.6.4* borland-5.8.2*
hash_no_ext_macro_2: borland-5.6.4* borland-5.8.2*
hash_number_test: borland-5.6.4* borland-5.8.2*
hash_pointer_test: borland-5.6.4* borland-5.8.2*
hash_range_test: borland-5.6.4* borland-5.8.2*
hash_set_test: borland-5.6.4* borland-5.8.2*
hash_string_test: borland-5.6.4* borland-5.8.2*
hash_value_array_test: borland-5.6.4* borland-5.8.2*
hash_vector_test: borland-5.6.4* borland-5.8.2*
link_ext_test: borland-5.6.4* borland-5.8.2*
link_test: borland-5.6.4* borland-5.8.2*
portable: borland-5.6.4* borland-5.8.2*
|fusion|
adapt_assoc_struct: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
adapt_struct: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
all: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
any: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
array: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
as_list: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
as_map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
as_set: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
as_vector: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
back_extended_deque: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
boost_tuple: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
clear: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
cons: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
count: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
count_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
deduce_sequence: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc
deque_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_iterator: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
deque_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
deque_value_at: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
erase: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
erase_key: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
filter: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
filter_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
filter_view: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
find: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
find_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
fold: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
for_each: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
front_extended_deque: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
fused: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
fused_function_object: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
fused_procedure: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
insert: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
insert_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
invoke: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
invoke_function_object: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
invoke_procedure: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
io: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
iterator_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
join: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
joint_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
list_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_iterator: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
list_value_at: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_fused: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
make_fused_function_object: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
make_fused_procedure: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
make_list: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
make_unfused_generic: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
make_unfused_lvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
make_unfused_rvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
make_vector: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
map: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
map_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
none: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
pop_back: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
pop_front: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
push_back: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
push_front: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
remove: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
remove_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
repetitive_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
replace: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
replace_if: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
reverse: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
reverse_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
set: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
single_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
std_pair: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
swap: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
transform: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
transform_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_element: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tuple_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
unfused_generic: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
unfused_lvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
unfused_rvalue_args: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
unfused_typed: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
variant: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
vector_comparison: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
vector_construction: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
vector_copy: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
vector_iterator: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
vector_make: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
vector_misc: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
vector_mutate: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
vector_n: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* sun-5.8
vector_tie: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
vector_value_at: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
zip: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
zip2: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
zip_ignore: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
zip_view: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
zip_view2: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
zip_view_ignore: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
|gil|
main: acc borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
|graph|
all_planar_input_files_test: msvc-7.1
cycle_ratio_tests: msvc-8.0
graphml_test: msvc-8.0
graphviz_test: msvc-8.0
kolmogorov_max_flow_test: acc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
max_flow_test: acc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
parallel_edges_loops_test: msvc-7.1
transitive_closure_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
|integer|
cstdint_test: borland-5.6.4* borland-5.8.2*
integer_test: borland-5.6.4* borland-5.8.2*
integer_traits_test: borland-5.6.4* borland-5.8.2*
|interprocess|
adaptive_node_pool_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
adaptive_pool_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
allocexcept_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
cached_adaptive_pool_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
cached_node_allocator_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
data_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
deque_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_adaptive_pool: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_allocator: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_conditionA: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_conditionB: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_mutexA: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_mutexB: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_semaphoreA: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_semaphoreB: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_upgradable_mutexA: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_anonymous_upgradable_mutexB: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_bufferstream: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_cached_adaptive_pool: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_cached_node_allocator: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_cont: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_contA: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_contB: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_intrusive: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_ipc_messageA: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_ipc_messageB: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_managed_aligned_allocation: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_managed_allocation_command: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_managed_construction_info: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_managed_external_buffer: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_managed_heap_memory: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64*
doc_managed_mapped_file: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64*
doc_managed_multiple_allocation: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_managed_raw_allocation: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_map: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_message_queueA: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_message_queueB: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_move_containers: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_named_allocA: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_named_allocB: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_node_allocator: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_offset_ptr: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_private_adaptive_pool: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_private_node_allocator: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_scoped_ptr: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_shared_memory: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_shared_memory2: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_shared_ptr: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64*
doc_shared_ptr_explicit: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_unique_ptr: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_vectorstream: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_where_allocate: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
flat_map_index_allocation_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
flat_tree_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
intrusive_ptr_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
iset_index_allocation_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64*
iunordered_set_index_allocation_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64*
list_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
managed_mapped_file_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
managed_shared_memory_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
map_index_allocation_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64*
mapped_file_test: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
memory_algorithm_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
message_queue_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
named_condition_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
named_mutex_test: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
named_recursive_mutex_test: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
named_semaphore_test: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
named_upgradable_mutex_test: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
node_allocator_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
node_pool_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
null_index_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
private_adaptive_pool_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
private_node_allocator_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
shared_memory_mapping_test: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
shared_memory_test: hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
shared_ptr_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
slist_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
string_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
tree_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
unique_ptr_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
user_buffer_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64*
vector_test: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
|intrusive|
default_hook_test: gcc-4.1.2_sunos_i86pc
doc_assoc_optimized_code: gcc-4.1.2_sunos_i86pc
doc_offset_ptr: gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
doc_set: gcc-4.1.2_sunos_i86pc
external_value_traits_test: gcc-4.1.2_sunos_i86pc
make_functions_test: gcc-4.1.2_sunos_i86pc
multiset_test: gcc-4.1.2_sunos_i86pc
set_test: gcc-4.1.2_sunos_i86pc
stateful_value_traits_test: gcc-4.1.2_sunos_i86pc
virtual_base_test: gcc-4.1.2_sunos_i86pc
|io|
ios_state_test: borland-5.6.4* borland-5.8.2*
|iostreams|
array_test: borland-5.6.4* borland-5.8.2*
auto_close_test: borland-5.6.4* borland-5.8.2*
buffer_size_test: borland-5.6.4* borland-5.8.2*
code_converter_test: borland-5.6.4* borland-5.8.2* msvc-7.1
component_access_test: borland-5.6.4* borland-5.8.2*
compose_test: borland-5.8.2*
copy_test: borland-5.6.4* borland-5.8.2*
counter_test: borland-5.6.4* borland-5.8.2*
direct_adapter_test: borland-5.6.4* borland-5.8.2*
example_test: borland-5.6.4* borland-5.8.2*
file_descriptor_test: borland-5.6.4* borland-5.8.2*
file_test: borland-5.6.4* borland-5.8.2*
filtering_stream_test: borland-5.6.4* borland-5.8.2*
flush_test: borland-5.6.4* borland-5.8.2*
invert_test: borland-5.6.4* borland-5.8.2*
line_filter_test: borland-5.6.4* borland-5.8.2*
mapped_file_test: borland-5.6.4* borland-5.8.2*
newline_test: borland-5.6.4* borland-5.8.2*
null_test: borland-5.6.4* borland-5.8.2*
pipeline_test: borland-5.6.4* borland-5.8.2*
positioning_test: borland-5.6.4* borland-5.8.2*
regex_filter_test: borland-5.6.4* borland-5.8.2*
restrict_test: borland-5.6.4* borland-5.8.2*
seekable_file_test: borland-5.8.2*
seekable_filter_test: borland-5.6.4* borland-5.8.2*
stdio_filter_test: borland-5.6.4* borland-5.8.2*
symmetric_filter_test: borland-5.6.4* borland-5.8.2*
tee_test: borland-5.6.4* borland-5.8.2*
wide_stream_test: borland-5.6.4* borland-5.8.2*
|iterator|
concept_tests: borland-5.6.4* borland-5.8.2*
counting_iterator_test: borland-5.6.4* borland-5.8.2*
filter_iterator_test: borland-5.6.4* borland-5.8.2*
indirect_iterator_test: borland-5.6.4* borland-5.8.2*
interoperable: borland-5.6.4* borland-5.8.2*
is_lvalue_iterator: borland-5.6.4* borland-5.8.2*
is_readable_iterator: borland-5.6.4* borland-5.8.2*
iterator_adaptor_cc: borland-5.6.4* borland-5.8.2*
iterator_adaptor_test: borland-5.6.4* borland-5.8.2*
iterator_archetype_cc: borland-5.6.4* borland-5.8.2*
iterator_facade: borland-5.6.4* borland-5.8.2*
iterator_traits_test: borland-5.6.4* borland-5.8.2*
permutation_iterator_test: borland-5.6.4* borland-5.8.2*
reverse_iterator_test: borland-5.6.4* borland-5.8.2*
transform_iterator_test: borland-5.6.4* borland-5.8.2*
unit_tests: borland-5.6.4* borland-5.8.2*
|lambda|
operator_tests_simple: msvc-7.1
|logic|
tribool_io_test: borland-5.6.4* borland-5.8.2*
tribool_rename_test: borland-5.6.4* borland-5.8.2*
tribool_test: borland-5.6.4* borland-5.8.2*
|math|
common_factor_test: borland-5.8.2* sun-5.8
dist_bernoulli_incl_test: borland-5.8.2*
dist_beta_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
dist_binomial_incl_test: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
dist_cauchy_incl_test: borland-5.8.2* borland-5.8.2*
dist_chi_squared_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
dist_complement_incl_test: borland-5.8.2*
dist_exponential_incl_test: borland-5.8.2* borland-5.8.2*
dist_extreme_val_incl_test: borland-5.8.2*
dist_fisher_f_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
dist_gamma_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
dist_lognormal_incl_test: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
dist_neg_binom_incl_test: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
dist_normal_incl_test: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
dist_poisson_incl_test: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
dist_students_t_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
dist_triangular_incl_test: borland-5.8.2*
dist_uniform_incl_test: borland-5.8.2*
dist_weibull_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
distribution_concept_check: borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
octonion_test: borland-5.8.2*
powm1_sqrtp1m1_test: borland-5.8.2*
quaternion_mult_incl_test: borland-5.8.2*
quaternion_test: borland-5.8.2*
sf_bessel_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
sf_beta_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
sf_binomial_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
sf_cbrt_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
sf_cos_pi_incl_test: borland-5.8.2*
sf_digamma_incl_test: borland-5.8.2*
sf_ellint_1_incl_test: borland-5.8.2*
sf_ellint_2_incl_test: borland-5.8.2*
sf_ellint_3_incl_test: borland-5.8.2*
sf_ellint_rc_incl_test: borland-5.8.2*
sf_ellint_rd_incl_test: borland-5.8.2*
sf_ellint_rf_incl_test: borland-5.8.2*
sf_ellint_rj_incl_test: borland-5.8.2*
sf_erf_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
sf_expm1_incl_test: borland-5.8.2*
sf_factorials_incl_test: borland-5.8.2* hp_cxx-71_006_tru64*
sf_fpclassify_incl_test: borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
sf_gamma_incl_test: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
sf_hermite_incl_test: borland-5.8.2*
sf_hypot_incl_test: borland-5.8.2*
sf_laguerre_incl_test: borland-5.8.2*
sf_lanczos_incl_test: borland-5.8.2*
sf_legendre_incl_test: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
sf_log1p_incl_test: borland-5.8.2*
sf_math_fwd_incl_test: borland-5.8.2*
sf_powm1_incl_test: borland-5.8.2*
sf_sign_incl_test: borland-5.8.2* sun-5.8
sf_sin_pi_incl_test: borland-5.8.2*
sf_sinc_incl_test: borland-5.8.2*
sf_sinhc_incl_test: borland-5.8.2*
sf_sph_harm_incl_test: borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
sf_sqrt1pm1_incl_test: borland-5.8.2*
special_functions_test: borland-5.8.2*
std_real_concept_check: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_bernoulli: borland-5.8.2* borland-5.8.2*
test_bessel_i: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_bessel_j: borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_bessel_k: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_bessel_y: borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_beta: borland-5.8.2* hp_cxx-71_006_tru64*
test_beta_dist: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_binomial_coeff: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_binomial_double: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_binomial_float: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_binomial_long_double: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_binomial_real_concept: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_carlson: borland-5.8.2* sun-5.8
test_cauchy: borland-5.8.2* borland-5.8.2* sun-5.8
test_cbrt: borland-5.8.2* hp_cxx-71_006_tru64*
test_chi_squared: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_classify: borland-5.8.2* sun-5.8
test_constants: borland-5.8.2* sun-5.8
test_digamma: borland-5.8.2* sun-5.8
test_dist_overloads: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_ellint_1: borland-5.8.2* sun-5.8
test_ellint_2: borland-5.8.2* sun-5.8
test_ellint_3: borland-5.8.2* borland-5.8.2* sun-5.8
test_erf: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_error_handling: borland-5.8.2*
test_exponential_dist: borland-5.8.2* borland-5.8.2* sun-5.8
test_extreme_value: borland-5.8.2* sun-5.8
test_factorials: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_find_location: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_find_scale: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_fisher_f: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_gamma: borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_gamma_dist: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_hermite: borland-5.8.2* borland-5.8.2*
test_ibeta_double: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_ibeta_float: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_ibeta_inv_ab_double: borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_ibeta_inv_ab_float: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_ibeta_inv_ab_long_double: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_ibeta_inv_ab_real_concept: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_ibeta_inv_double: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_ibeta_inv_float: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_ibeta_inv_long_double: borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_ibeta_inv_real_concept: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_ibeta_long_double: borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_ibeta_real_concept: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_igamma: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_igamma_inv_double: borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_igamma_inv_float: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_igamma_inv_long_double: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_igamma_inv_real_concept: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_igamma_inva_double: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_igamma_inva_float: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_igamma_inva_long_double: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_igamma_inva_real_concept: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_instantiate1: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_laguerre: borland-5.8.2* borland-5.8.2*
test_legendre: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_lognormal: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_minima: borland-5.8.2* hp_cxx-71_006_tru64*
test_negative_binomial_double: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_negative_binomial_float: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_negative_binomial_long_double: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_negative_binomial_real_concept: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_normal: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_pareto: borland-5.8.2*
test_poisson_double: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_poisson_float: borland-5.8.2* hp_cxx-71_006_tru64*
test_poisson_long_double: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_poisson_real_concept: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_policy: borland-5.8.2* borland-5.8.2*
test_policy_sf: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_rationals: borland-5.8.2*
test_rayleigh: borland-5.8.2* borland-5.8.2* sun-5.8
test_remez: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
test_roots: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
test_spherical_harmonic: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_students_t: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_tgamma_ratio: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_toms748_solve: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
test_traits: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
test_triangular: borland-5.8.2* sun-5.8
test_uniform: borland-5.8.2*
test_weibull: borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
tools_config_inc_test: borland-5.8.2*
tools_fraction_inc_test: borland-5.8.2*
tools_minima_inc_test: borland-5.8.2*
tools_polynomial_inc_test: borland-5.8.2*
tools_precision_inc_test: borland-5.8.2*
tools_rational_inc_test: borland-5.8.2*
tools_real_cast_inc_test: borland-5.8.2*
tools_remez_inc_test: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64*
tools_roots_inc_test: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* sun-5.8
tools_series_inc_test: borland-5.8.2* borland-5.8.2*
tools_solve_inc_test: borland-5.8.2* borland-5.8.2*
tools_stats_inc_test: borland-5.8.2*
tools_test_data_inc_test: borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* sun-5.8
tools_test_inc_test: borland-5.8.2* hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
tools_toms748_inc_test: borland-5.8.2*
|mpl|
advance: borland-5.6.4* borland-5.8.2*
always: borland-5.6.4* borland-5.8.2*
apply: gcc-4.1.2_sunos_i86pc
apply_wrap: borland-5.6.4* borland-5.8.2*
arithmetic: borland-5.6.4* borland-5.8.2*
assert: borland-5.6.4* borland-5.8.2*
at: borland-5.6.4* borland-5.8.2*
back: borland-5.6.4* borland-5.8.2*
bind: borland-5.6.4* borland-5.8.2*
bitwise: borland-5.6.4* borland-5.8.2*
bool: borland-5.6.4* borland-5.8.2*
comparison: borland-5.6.4* borland-5.8.2*
contains: borland-5.6.4* borland-5.8.2*
copy: borland-5.6.4* borland-5.8.2*
copy_if: borland-5.6.4* borland-5.8.2*
count: borland-5.6.4* borland-5.8.2*
count_if: borland-5.6.4* borland-5.8.2*
deque: borland-5.6.4* borland-5.8.2*
distance: borland-5.6.4* borland-5.8.2*
empty: borland-5.6.4* borland-5.8.2*
equal: borland-5.6.4* borland-5.8.2*
erase: borland-5.6.4* borland-5.8.2*
erase_range: borland-5.6.4* borland-5.8.2*
eval_if: borland-5.6.4* borland-5.8.2*
filter_view: borland-5.6.4* borland-5.8.2*
find: borland-5.6.4* borland-5.8.2*
find_if: borland-5.6.4* borland-5.8.2*
fold: borland-5.6.4* borland-5.8.2*
for_each: borland-5.6.4* borland-5.8.2*
front: borland-5.6.4* borland-5.8.2*
identity: borland-5.6.4* borland-5.8.2*
if: borland-5.6.4* borland-5.8.2*
index_of: borland-5.6.4* borland-5.8.2*
inherit: borland-5.6.4* borland-5.8.2*
insert: borland-5.6.4* borland-5.8.2*
insert_range: borland-5.6.4* borland-5.8.2*
int: borland-5.6.4* borland-5.8.2*
integral_c: borland-5.6.4* borland-5.8.2*
is_placeholder: borland-5.6.4* borland-5.8.2*
iterator_tags: borland-5.6.4* borland-5.8.2*
joint_view: borland-5.6.4* borland-5.8.2*
lambda: borland-5.6.4* borland-5.8.2*
lambda_args: borland-5.6.4* borland-5.8.2*
largest_int: borland-5.6.4* borland-5.8.2*
list: borland-5.6.4* borland-5.8.2*
list_c: borland-5.6.4* borland-5.8.2*
logical: borland-5.6.4* borland-5.8.2*
lower_bound: borland-5.6.4* borland-5.8.2*
max_element: borland-5.6.4* borland-5.8.2*
min_max: borland-5.6.4* borland-5.8.2*
msvc_is_class: borland-5.6.4* borland-5.8.2*
next: borland-5.6.4* borland-5.8.2*
no_has_xxx: borland-5.6.4* borland-5.8.2*
numeric_ops: borland-5.6.4* borland-5.8.2*
pair_view: borland-5.6.4* borland-5.8.2*
partition: borland-5.6.4* borland-5.8.2*
pop_front: borland-5.6.4* borland-5.8.2*
push_front: borland-5.6.4* borland-5.8.2*
range_c: borland-5.6.4* borland-5.8.2*
remove: borland-5.6.4* borland-5.8.2*
remove_if: borland-5.6.4* borland-5.8.2*
replace: borland-5.6.4* borland-5.8.2*
replace_if: borland-5.6.4* borland-5.8.2*
reverse: borland-5.6.4* borland-5.8.2*
same_as: borland-5.6.4* borland-5.8.2*
single_view: borland-5.6.4* borland-5.8.2*
size: borland-5.6.4* borland-5.8.2*
size_t: borland-5.6.4* borland-5.8.2*
sizeof: borland-5.6.4* borland-5.8.2*
sort: borland-5.6.4* borland-5.8.2*
stable_partition: borland-5.6.4* borland-5.8.2*
template_arity: borland-5.6.4* borland-5.8.2*
transform: borland-5.6.4* borland-5.8.2*
transform_view: borland-5.6.4* borland-5.8.2*
unique: borland-5.6.4* borland-5.8.2*
unpack_args: borland-5.6.4* borland-5.8.2*
upper_bound: borland-5.6.4* borland-5.8.2*
vector: borland-5.6.4* borland-5.8.2*
vector_c: borland-5.6.4* borland-5.8.2*
|numeric/conversion|
numeric_cast_test: borland-5.6.4* borland-5.8.2*
|numeric/interval|
add: borland-5.8.2*
cmp: borland-5.8.2*
cmp_exn: borland-5.8.2*
cmp_exp: borland-5.8.2*
cmp_lex: borland-5.8.2*
cmp_set: borland-5.8.2*
cmp_tribool: borland-5.8.2*
fmod: borland-5.8.2*
mul: borland-5.8.2*
pi: borland-5.8.2*
pow: borland-5.8.2*
test_float: borland-5.8.2*
|optional|
optional_test: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
optional_test_inplace: borland-5.6.4* borland-5.8.2*
optional_test_io: borland-5.6.4* borland-5.8.2*
optional_test_ref: borland-5.6.4* borland-5.8.2*
optional_test_tie: borland-5.6.4* borland-5.8.2*
|parameter|
basics: borland-5.6.4* borland-5.8.2*
compose: borland-5.6.4* borland-5.8.2*
deduced: borland-5.6.4* borland-5.8.2*
deduced_dependent_predicate: borland-5.6.4* borland-5.8.2*
earwicker: borland-5.6.4* borland-5.8.2*
efficiency: borland-5.6.4* borland-5.8.2*
macros: borland-5.6.4* borland-5.8.2*
mpl: borland-5.6.4* borland-5.8.2*
ntp: borland-5.6.4* borland-5.8.2*
preprocessor: borland-5.6.4* borland-5.8.2*
sfinae: borland-5.6.4*
singular: borland-5.6.4* borland-5.8.2*
tutorial: borland-5.6.4* borland-5.8.2*
unwrap_cv_reference: borland-5.6.4* borland-5.8.2*
|pool|
test_pool_alloc: borland-5.6.4* borland-5.8.2*
|preprocessor|
arithmetic: borland-5.6.4* borland-5.8.2*
array: borland-5.6.4* borland-5.8.2*
comparison: borland-5.6.4* borland-5.8.2*
control: borland-5.6.4* borland-5.8.2*
debug: borland-5.6.4* borland-5.8.2*
facilities: borland-5.6.4* borland-5.8.2*
iteration: borland-5.6.4* borland-5.8.2*
list: borland-5.6.4* borland-5.8.2*
logical: borland-5.6.4* borland-5.8.2*
repetition: borland-5.6.4* borland-5.8.2*
selection: borland-5.6.4* borland-5.8.2*
seq: borland-5.6.4* borland-5.8.2*
slot: borland-5.6.4* borland-5.8.2*
tuple: borland-5.6.4* borland-5.8.2*
|program_options|
cmdline_test: borland-5.6.4* borland-5.8.2*
cmdline_test_dll: borland-5.6.4* borland-5.8.2*
options_description_test: borland-5.6.4* borland-5.8.2*
options_description_test_dll: borland-5.6.4* borland-5.8.2*
parsers_test: borland-5.6.4* borland-5.8.2*
parsers_test_dll: borland-5.6.4* borland-5.8.2*
positional_options_test: borland-5.6.4* borland-5.8.2*
positional_options_test_dll: borland-5.6.4* borland-5.8.2*
unicode_test: borland-5.6.4* borland-5.8.2*
unicode_test_dll: borland-5.6.4* borland-5.8.2*
variable_map_test: borland-5.6.4* borland-5.8.2*
variable_map_test_dll: borland-5.6.4* borland-5.8.2*
winmain: borland-5.6.4* borland-5.8.2*
winmain_dll: borland-5.6.4* borland-5.8.2*
|property_map|
dynamic_properties_test: borland-5.6.4* borland-5.8.2*
property_map_cc: borland-5.6.4* borland-5.8.2*
|ptr_container|
ptr_set: acc gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64* msvc-7.1 msvc-8.0 msvc-8.0
serialization: gcc-4.1.2_sunos_i86pc sun-5.8
|python|
exec: gcc-4.1.2_sunos_i86pc
import_: msvc-7.1 msvc-8.0 msvc-8.0
|random|
random_demo: borland-5.6.4* borland-5.8.2*
|range|
algorithm_example: borland-5.6.4* borland-5.8.2*
array: msvc-7.1
const_ranges: borland-5.6.4* borland-5.8.2*
extension_mechanism: borland-5.6.4* borland-5.8.2*
iterator_pair: borland-5.6.4* borland-5.8.2*
iterator_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* msvc-7.1 msvc-8.0 sun-5.8
partial_workaround: borland-5.6.4* borland-5.8.2*
reversible_range: borland-5.6.4* borland-5.8.2* msvc-7.1
std_container: borland-5.6.4* borland-5.8.2*
string: msvc-7.1
sub_range: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2* hp_cxx-71_006_tru64* msvc-7.1 sun-5.8
|rational|
rational_example: borland-5.6.4* borland-5.8.2*
rational_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|regex|
bad_expression_test: borland-5.6.4* borland-5.8.2*
captures_example: borland-5.6.4* borland-5.8.2*
captures_test: borland-5.6.4* borland-5.8.2*
concept_check: borland-5.6.4*
credit_card_example: borland-5.6.4* borland-5.8.2*
icu_concept_check: borland-5.6.4* borland-5.8.2*
icu_example: borland-5.6.4* borland-5.8.2*
mfc_example: borland-5.6.4* borland-5.8.2*
object_cache_test: borland-5.6.4* borland-5.8.2*
partial_regex_grep: borland-5.6.4* borland-5.8.2*
partial_regex_iterate: borland-5.6.4* borland-5.8.2*
partial_regex_match: borland-5.6.4* borland-5.8.2*
posix_api_check: borland-5.6.4* borland-5.8.2*
posix_api_check_cpp: borland-5.6.4* borland-5.8.2*
recursion_test: borland-5.6.4* borland-5.8.2*
regex_config_info: borland-5.6.4* borland-5.8.2*
regex_dll_config_info: borland-5.6.4* borland-5.8.2*
regex_grep_example_1: borland-5.6.4* borland-5.8.2*
regex_grep_example_2: borland-5.6.4* borland-5.8.2*
regex_grep_example_3: borland-5.6.4* borland-5.8.2*
regex_grep_example_4: borland-5.6.4* borland-5.8.2*
regex_iterator_example: borland-5.6.4* borland-5.8.2*
regex_match_example: borland-5.6.4* borland-5.8.2*
regex_merge_example: borland-5.6.4* borland-5.8.2*
regex_replace_example: borland-5.6.4* borland-5.8.2*
regex_search_example: borland-5.6.4* borland-5.8.2*
regex_split_example_1: borland-5.6.4* borland-5.8.2*
regex_split_example_2: borland-5.6.4* borland-5.8.2*
regex_timer: borland-5.6.4* borland-5.8.2*
regex_token_iterator_eg_1: borland-5.6.4* borland-5.8.2*
regex_token_iterator_eg_2: borland-5.6.4* borland-5.8.2*
static_mutex_test: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_collate_info: borland-5.6.4* borland-5.8.2*
test_grep: borland-5.6.4* borland-5.8.2*
unicode_iterator_test: borland-5.8.2*
wide_posix_api_check_c: borland-5.6.4* borland-5.8.2*
wide_posix_api_check_cpp: borland-5.6.4* borland-5.8.2*
|serialization|
test_array_binary_archive: borland-5.6.4* borland-5.8.2*
test_array_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_array_text_archive: borland-5.6.4* borland-5.8.2*
test_array_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_array_text_warchive: borland-5.6.4* borland-5.8.2*
test_array_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_array_xml_archive: borland-5.6.4* borland-5.8.2*
test_array_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_array_xml_warchive: borland-5.6.4* borland-5.8.2*
test_array_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_binary_binary_archive: borland-5.6.4* borland-5.8.2*
test_binary_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_binary_text_archive: borland-5.6.4* borland-5.8.2*
test_binary_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_binary_text_warchive: borland-5.6.4* borland-5.8.2*
test_binary_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_binary_xml_archive: borland-5.6.4* borland-5.8.2*
test_binary_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_binary_xml_warchive: borland-5.6.4* borland-5.8.2*
test_binary_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_binary_archive: borland-5.6.4* borland-5.8.2*
test_class_info_save_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_archive: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_warchive: borland-5.6.4* borland-5.8.2*
test_class_info_save_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_archive: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_warchive: borland-5.6.4* borland-5.8.2*
test_class_info_save_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_codecvt_null: borland-5.6.4* borland-5.8.2*
test_const_pass: borland-5.6.4* borland-5.8.2*
test_contained_class_binary_archive: borland-5.6.4* borland-5.8.2*
test_contained_class_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_text_archive: borland-5.6.4* borland-5.8.2*
test_contained_class_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_text_warchive: borland-5.6.4* borland-5.8.2*
test_contained_class_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_archive: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_warchive: borland-5.6.4* borland-5.8.2*
test_contained_class_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_binary_archive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_archive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_warchive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_archive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_warchive: borland-5.6.4* borland-5.8.2*
test_cyclic_ptrs_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_binary_archive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_archive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_warchive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_archive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_warchive: borland-5.6.4* borland-5.8.2*
test_delete_pointer_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_demo: borland-5.6.4* borland-5.8.2*
test_demo_auto_ptr: borland-5.6.4* borland-5.8.2*
test_demo_auto_ptr_dll: borland-5.6.4* borland-5.8.2*
test_demo_dll: borland-5.6.4* borland-5.8.2*
test_demo_exception: borland-5.6.4* borland-5.8.2*
test_demo_exception_dll: borland-5.6.4* borland-5.8.2*
test_demo_fast_archive: borland-5.6.4* borland-5.8.2*
test_demo_fast_archive_dll: borland-5.6.4* borland-5.8.2*
test_demo_pimpl: borland-5.6.4* borland-5.8.2*
test_demo_pimpl_dll: borland-5.6.4* borland-5.8.2*
test_demo_polymorphic: borland-5.6.4* borland-5.8.2*
test_demo_polymorphic_dll: borland-5.6.4* borland-5.8.2*
test_demo_portable_archive: borland-5.6.4* borland-5.8.2*
test_demo_portable_archive_dll: borland-5.8.2*
test_demo_shared_ptr: borland-5.6.4* borland-5.8.2*
test_demo_shared_ptr_dll: borland-5.6.4* borland-5.8.2*
test_demo_xml: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_demo_xml_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_demo_xml_load: borland-5.6.4* borland-5.8.2*
test_demo_xml_load_dll: borland-5.6.4* borland-5.8.2*
test_demo_xml_save: borland-5.6.4* borland-5.8.2*
test_demo_xml_save_dll: borland-5.6.4* borland-5.8.2*
test_deque_binary_archive: borland-5.6.4* borland-5.8.2*
test_deque_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_deque_text_archive: borland-5.6.4* borland-5.8.2*
test_deque_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_deque_text_warchive: borland-5.6.4* borland-5.8.2*
test_deque_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_deque_xml_archive: borland-5.6.4* borland-5.8.2*
test_deque_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_deque_xml_warchive: borland-5.6.4* borland-5.8.2*
test_deque_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_binary_archive: borland-5.6.4* borland-5.8.2*
test_derived_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_binary_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_text_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_text_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_archive: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_warchive: borland-5.6.4* borland-5.8.2*
test_derived_class_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_text_archive: borland-5.6.4* borland-5.8.2*
test_derived_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_text_warchive: borland-5.6.4* borland-5.8.2*
test_derived_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_derived_xml_archive: borland-5.6.4* borland-5.8.2*
test_derived_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_derived_xml_warchive: borland-5.6.4* borland-5.8.2*
test_derived_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_binary_archive: borland-5.6.4* borland-5.8.2*
test_diamond_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_text_archive: borland-5.6.4* borland-5.8.2*
test_diamond_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_text_warchive: borland-5.6.4* borland-5.8.2*
test_diamond_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_xml_archive: borland-5.6.4* borland-5.8.2*
test_diamond_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_diamond_xml_warchive: borland-5.6.4* borland-5.8.2*
test_diamond_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_exported_binary_archive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
test_exported_binary_archive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
test_exported_text_archive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
test_exported_text_archive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
test_exported_text_warchive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
test_exported_text_warchive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
test_exported_xml_archive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
test_exported_xml_archive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
test_exported_xml_warchive: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
test_exported_xml_warchive_dll: borland-5.6.4* borland-5.8.2* gcc-4.1.2_sunos_i86pc hp_cxx-71_006_tru64* hp_cxx-71_006_tru64*
test_inclusion: borland-5.6.4* borland-5.8.2*
test_iterators: borland-5.6.4* borland-5.8.2*
test_iterators_base64: borland-5.6.4* borland-5.8.2*
test_list_binary_archive: borland-5.6.4* borland-5.8.2*
test_list_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_list_ptrs_binary_archive: borland-5.6.4* borland-5.8.2*
test_list_ptrs_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_list_ptrs_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_ptrs_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_list_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_binary_archive: borland-5.6.4* borland-5.8.2*
test_map_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_map_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_map_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mi_binary_archive: borland-5.6.4* borland-5.8.2*
test_mi_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_mi_text_archive: borland-5.6.4* borland-5.8.2*
test_mi_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_mi_text_warchive: borland-5.6.4* borland-5.8.2*
test_mi_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_mi_xml_archive: borland-5.6.4* borland-5.8.2*
test_mi_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_mi_xml_warchive: borland-5.6.4* borland-5.8.2*
test_mi_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_mult_archive_types: borland-5.6.4* borland-5.8.2*
test_mult_archive_types_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_binary_archive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_archive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_warchive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_archive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_warchive: borland-5.6.4* borland-5.8.2*
test_multiple_ptrs_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_binary_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor2_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_binary_archive: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_default_ctor_binary_archive_dll: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_default_ctor_text_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_text_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_archive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_warchive: borland-5.6.4* borland-5.8.2*
test_non_default_ctor_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_binary_archive: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_intrusive_binary_archive_dll: borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_non_intrusive_text_archive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_text_warchive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_archive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_warchive: borland-5.6.4* borland-5.8.2*
test_non_intrusive_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_null_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_null_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_null_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_binary_archive: borland-5.6.4* borland-5.8.2*
test_nvp_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_text_archive: borland-5.6.4* borland-5.8.2*
test_nvp_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_text_warchive: borland-5.6.4* borland-5.8.2*
test_nvp_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_xml_archive: borland-5.6.4* borland-5.8.2*
test_nvp_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_nvp_xml_warchive: borland-5.6.4* borland-5.8.2*
test_nvp_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_object_binary_archive: borland-5.6.4* borland-5.8.2*
test_object_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_object_text_archive: borland-5.6.4* borland-5.8.2*
test_object_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_object_text_warchive: borland-5.6.4* borland-5.8.2*
test_object_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_object_xml_archive: borland-5.6.4* borland-5.8.2*
test_object_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_object_xml_warchive: borland-5.6.4* borland-5.8.2*
test_object_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_optional_binary_archive: borland-5.6.4* borland-5.8.2*
test_optional_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_optional_text_archive: borland-5.6.4* borland-5.8.2*
test_optional_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_optional_text_warchive: borland-5.6.4* borland-5.8.2*
test_optional_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_optional_xml_archive: borland-5.6.4* borland-5.8.2*
test_optional_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_optional_xml_warchive: borland-5.6.4* borland-5.8.2*
test_optional_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_binary_archive: borland-5.6.4* borland-5.8.2*
test_polymorphic_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_archive: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_warchive: borland-5.6.4* borland-5.8.2*
test_polymorphic_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_archive: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_warchive: borland-5.6.4* borland-5.8.2*
test_polymorphic_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_binary_archive: borland-5.6.4* borland-5.8.2*
test_primitive_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_text_archive: borland-5.6.4* borland-5.8.2*
test_primitive_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_text_warchive: borland-5.6.4* borland-5.8.2*
test_primitive_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_xml_archive: borland-5.6.4* borland-5.8.2*
test_primitive_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_primitive_xml_warchive: borland-5.6.4* borland-5.8.2*
test_primitive_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_private_ctor: borland-5.6.4* borland-5.8.2*
test_private_ctor_dll: borland-5.6.4* borland-5.8.2*
test_recursion_binary_archive: borland-5.6.4* borland-5.8.2*
test_recursion_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_text_archive: borland-5.6.4* borland-5.8.2*
test_recursion_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_text_warchive: borland-5.6.4* borland-5.8.2*
test_recursion_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_xml_archive: borland-5.6.4* borland-5.8.2*
test_recursion_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_recursion_xml_warchive: borland-5.6.4* borland-5.8.2*
test_recursion_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_registered_binary_archive: borland-5.6.4* borland-5.8.2*
test_registered_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_registered_text_archive: borland-5.6.4* borland-5.8.2*
test_registered_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_registered_text_warchive: borland-5.6.4* borland-5.8.2*
test_registered_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_registered_xml_archive: borland-5.6.4* borland-5.8.2*
test_registered_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_registered_xml_warchive: borland-5.6.4* borland-5.8.2*
test_registered_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_reset_object_address: borland-5.6.4* borland-5.8.2*
test_reset_object_address_dll: borland-5.6.4* borland-5.8.2*
test_set_binary_archive: borland-5.8.2*
test_set_binary_archive_dll: borland-5.8.2*
test_set_text_archive: borland-5.8.2* borland-5.8.2*
test_set_text_archive_dll: borland-5.8.2* borland-5.8.2*
test_set_text_warchive: borland-5.8.2* borland-5.8.2*
test_set_text_warchive_dll: borland-5.8.2* borland-5.8.2*
test_set_xml_archive: borland-5.8.2* borland-5.8.2*
test_set_xml_archive_dll: borland-5.8.2* borland-5.8.2*
test_set_xml_warchive: borland-5.8.2* borland-5.8.2*
test_set_xml_warchive_dll: borland-5.8.2* borland-5.8.2*
test_shared_ptr_132_binary_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_132_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_shared_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_binary_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_binary_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_ptr_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_text_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_text_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_archive: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_warchive: borland-5.6.4* borland-5.8.2*
test_simple_class_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_smart_cast: borland-5.6.4* borland-5.8.2*
test_split_binary_archive: borland-5.6.4* borland-5.8.2*
test_split_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_split_text_archive: borland-5.6.4* borland-5.8.2*
test_split_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_split_text_warchive: borland-5.6.4* borland-5.8.2*
test_split_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_split_xml_archive: borland-5.6.4* borland-5.8.2*
test_split_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_split_xml_warchive: borland-5.6.4* borland-5.8.2*
test_split_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_static_warning: borland-5.6.4* borland-5.8.2*
test_tracking_binary_archive: borland-5.6.4* borland-5.8.2*
test_tracking_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_text_archive: borland-5.6.4* borland-5.8.2*
test_tracking_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_text_warchive: borland-5.6.4* borland-5.8.2*
test_tracking_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_xml_archive: borland-5.6.4* borland-5.8.2*
test_tracking_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_tracking_xml_warchive: borland-5.6.4* borland-5.8.2*
test_tracking_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_traits_pass: borland-5.6.4* borland-5.8.2*
test_unregistered_binary_archive: borland-5.6.4* borland-5.8.2*
test_unregistered_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_text_archive: borland-5.6.4* borland-5.8.2*
test_unregistered_text_archive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_text_warchive: borland-5.6.4* borland-5.8.2*
test_unregistered_text_warchive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_archive: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_archive_dll: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_warchive: borland-5.6.4* borland-5.8.2*
test_unregistered_xml_warchive_dll: borland-5.6.4* borland-5.8.2*
test_utf8_codecvt: borland-5.6.4* borland-5.8.2*
test_valarray_binary_archive: borland-5.6.4* borland-5.8.2*
test_valarray_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_valarray_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_valarray_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_variant_binary_archive: borland-5.6.4*
test_variant_binary_archive_dll: borland-5.6.4*
test_variant_text_archive: borland-5.6.4*
test_variant_text_archive_dll: borland-5.6.4*
test_variant_text_warchive: borland-5.6.4*
test_variant_text_warchive_dll: borland-5.6.4*
test_variant_xml_archive: borland-5.6.4*
test_variant_xml_archive_dll: borland-5.6.4*
test_variant_xml_warchive: borland-5.6.4*
test_variant_xml_warchive_dll: borland-5.6.4*
test_vector_binary_archive: borland-5.6.4* borland-5.8.2*
test_vector_binary_archive_dll: borland-5.6.4* borland-5.8.2*
test_vector_text_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_text_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_text_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_text_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_archive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_archive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_warchive: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_vector_xml_warchive_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_void_cast: borland-5.6.4* borland-5.8.2*
test_void_cast_dll: borland-5.6.4* borland-5.8.2*
|signals|
dead_slot_test: borland-5.6.4* borland-5.8.2*
deletion_test: borland-5.6.4* borland-5.8.2*
ordering_test: borland-5.6.4* borland-5.8.2*
signal_n_test: borland-5.6.4* borland-5.8.2*
trackable_test: borland-5.6.4* borland-5.8.2*
|smart_ptr|
atomic_count_test: borland-5.6.4* borland-5.8.2*
get_deleter_test: borland-5.6.4* borland-5.8.2*
intrusive_ptr_test: borland-5.6.4* borland-5.8.2*
lw_mutex_test: borland-5.6.4* borland-5.8.2*
pointer_cast_test: borland-5.6.4* borland-5.8.2*
pointer_to_other_test: borland-5.6.4* borland-5.8.2*
shared_from_this_test: borland-5.6.4* borland-5.8.2*
shared_ptr_alias_test: borland-5.6.4* borland-5.8.2*
shared_ptr_alloc2_test: borland-5.6.4* borland-5.8.2*
shared_ptr_basic_test: borland-5.6.4* borland-5.8.2*
shared_ptr_rv_test: borland-5.6.4* borland-5.8.2*
shared_ptr_test: borland-5.6.4* borland-5.8.2*
smart_ptr_test: borland-5.6.4* borland-5.8.2*
sp_unary_addr_test: borland-5.6.4* borland-5.8.2*
weak_ptr_test: borland-5.6.4* borland-5.8.2*
|spirit|
grammar_mt_tests: msvc-8.0
mix_and_match_trees: sun-5.8
owi_mt_tests: msvc-8.0
|static_assert|
static_assert_example_2: borland-5.6.4* borland-5.8.2*
static_assert_example_3: borland-5.6.4* borland-5.8.2*
|system|
error_code_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
error_code_test_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
error_code_user_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
error_code_user_test_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
header_only_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
initialization_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
system_error_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
system_error_test_dll: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|test|
boost_check_equal_str: sun-5.8
errors_handling_test: sun-5.8
fixed_mapping_test: sun-5.8
online_test: sun-5.8
parameterized_test_test: sun-5.8
result_report_test: sun-5.8
test_tools_test: sun-5.8
|thread|
test_barrier: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_barrier_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_condition: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_condition_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_lock_concept: borland-5.6.4* borland-5.8.2*
test_lock_concept_lib: borland-5.6.4* borland-5.8.2*
test_mutex: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_mutex_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_once: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_once_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_shared_mutex: borland-5.6.4* borland-5.6.4* borland-5.8.2* msvc-7.1 msvc-8.0
test_shared_mutex_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2* msvc-7.1
test_thread: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_thread_lib: borland-5.6.4* borland-5.6.4* borland-5.8.2*
test_tss: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
test_xtime: borland-5.6.4* borland-5.8.2*
test_xtime_lib: borland-5.6.4* borland-5.8.2*
|timer|
timer_test: borland-5.6.4* borland-5.8.2*
|tokenizer|
examples: borland-5.6.4* borland-5.8.2*
simple_example_1: borland-5.6.4* borland-5.8.2*
simple_example_2: borland-5.6.4* borland-5.8.2*
simple_example_3: borland-5.6.4* borland-5.8.2*
simple_example_4: borland-5.6.4* borland-5.8.2*
simple_example_5: borland-5.6.4* borland-5.8.2*
|tr1|
std_run_complex_overloads: hp_cxx-71_006_tru64*
std_run_random: hp_cxx-71_006_tru64*
std_test_array: borland-5.8.2*
std_test_array_tricky: borland-5.8.2*
std_test_bind: borland-5.6.4* borland-5.8.2*
std_test_bind_header: borland-5.6.4* borland-5.8.2*
std_test_complex_header: borland-5.6.4* borland-5.8.2*
std_test_function_header: borland-5.6.4* borland-5.8.2*
std_test_hash: borland-5.6.4* borland-5.8.2*
std_test_hash_header: borland-5.6.4* borland-5.8.2*
std_test_integral_const_header: borland-5.6.4* borland-5.8.2*
std_test_mem_fn: borland-5.8.2*
std_test_mem_fn_header: borland-5.6.4* borland-5.8.2*
std_test_mpl_header: borland-5.6.4* borland-5.8.2*
std_test_ref_header: borland-5.6.4* borland-5.8.2*
std_test_reference_wrapper: borland-5.6.4* borland-5.8.2*
std_test_regex: borland-5.8.2* hp_cxx-71_006_tru64*
std_test_result_of_header: borland-5.6.4* borland-5.8.2*
std_test_shared_array_header: borland-5.6.4* borland-5.8.2*
std_test_shared_from_this_header: borland-5.6.4* borland-5.8.2*
std_test_shd_this_header: borland-5.6.4* borland-5.8.2*
std_test_tr1_include: borland-5.8.2* hp_cxx-71_006_tru64*
std_test_tuple: borland-5.8.2* hp_cxx-71_006_tru64*
std_test_tuple_tricky: hp_cxx-71_006_tru64* sun-5.8
std_test_type_traits_header: borland-5.6.4* borland-5.8.2*
std_test_weak_ptr_header: borland-5.6.4* borland-5.8.2*
test_algorithm_std_header: borland-5.6.4* borland-5.8.2*
test_array: borland-5.8.2*
test_array_tricky: borland-5.8.2*
test_bind: borland-5.6.4* borland-5.8.2*
test_bind_header: borland-5.6.4* borland-5.8.2*
test_bitset_std_header: borland-5.6.4* borland-5.8.2*
test_complex_header: borland-5.6.4* borland-5.8.2*
test_complex_std_header: borland-5.6.4* borland-5.8.2*
test_deque_std_header: borland-5.6.4* borland-5.8.2*
test_exception_std_header: borland-5.6.4* borland-5.8.2*
test_fstream_std_header: borland-5.6.4* borland-5.8.2*
test_function_header: borland-5.6.4* borland-5.8.2*
test_functional_std_header: borland-5.6.4* borland-5.8.2*
test_hash: borland-5.6.4* borland-5.8.2*
test_hash_header: borland-5.6.4* borland-5.8.2*
test_integral_const_header: borland-5.6.4* borland-5.8.2*
test_iomanip_std_header: borland-5.6.4* borland-5.8.2*
test_ios_std_header: borland-5.6.4* borland-5.8.2*
test_iostream_std_header: borland-5.6.4* borland-5.8.2*
test_istream_std_header: borland-5.6.4* borland-5.8.2*
test_iterator_std_header: borland-5.6.4* borland-5.8.2*
test_limits_std_header: borland-5.6.4* borland-5.8.2*
test_list_std_header: borland-5.6.4* borland-5.8.2*
test_locale_std_header: borland-5.6.4* borland-5.8.2*
test_map_std_header: borland-5.6.4* borland-5.8.2*
test_mem_fn: borland-5.8.2*
test_mem_fn_header: borland-5.6.4* borland-5.8.2*
test_memory_std_header: borland-5.6.4* borland-5.8.2*
test_mpl_header: borland-5.6.4* borland-5.8.2*
test_new_std_header: borland-5.6.4* borland-5.8.2*
test_numeric_std_header: borland-5.6.4* borland-5.8.2*
test_ostream_std_header: borland-5.6.4* borland-5.8.2*
test_queue_std_header: borland-5.6.4* borland-5.8.2*
test_ref_header: borland-5.6.4* borland-5.8.2*
test_reference_wrapper: borland-5.6.4* borland-5.8.2*
test_regex: borland-5.8.2*
test_result_of_header: borland-5.6.4* borland-5.8.2*
test_set_std_header: borland-5.6.4* borland-5.8.2*
test_shared_array_header: borland-5.6.4* borland-5.8.2*
test_shared_from_this_header: borland-5.6.4* borland-5.8.2*
test_shd_this_header: borland-5.6.4* borland-5.8.2*
test_sstream_std_header: borland-5.6.4* borland-5.8.2*
test_stack_std_header: borland-5.6.4* borland-5.8.2*
test_stdexcept_std_header: borland-5.6.4* borland-5.8.2*
test_streambuf_std_header: borland-5.6.4* borland-5.8.2*
test_string_std_header: borland-5.6.4* borland-5.8.2*
test_strstream_std_header: borland-5.6.4* borland-5.8.2*
test_tr1_include: borland-5.8.2* hp_cxx-71_006_tru64*
test_tuple: borland-5.8.2* hp_cxx-71_006_tru64*
test_tuple_tricky: hp_cxx-71_006_tru64* sun-5.8
test_type_traits_header: borland-5.6.4* borland-5.8.2*
test_typeinfo_std_header: borland-5.6.4* borland-5.8.2*
test_utility_std_header: borland-5.6.4* borland-5.8.2* hp_cxx-71_006_tru64*
test_valarray_std_header: borland-5.6.4* borland-5.8.2*
test_vector_std_header: borland-5.6.4* borland-5.8.2*
test_weak_ptr_header: borland-5.6.4* borland-5.8.2*
tr1_add_const_test: borland-5.8.2*
tr1_add_cv_test: borland-5.8.2*
tr1_add_pointer_test: borland-5.8.2*
tr1_add_reference_test: borland-5.8.2*
tr1_add_volatile_test: borland-5.8.2*
tr1_aligned_storage_test: borland-5.8.2*
tr1_alignment_of_test: borland-5.8.2*
tr1_has_nothrow_assign_test: borland-5.8.2*
tr1_has_nothrow_constr_test: borland-5.8.2*
tr1_has_nothrow_copy_test: borland-5.8.2*
tr1_has_tr1_array_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_bind_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_cx_over_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_cx_trig_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_function_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_hash_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_mem_fn_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_random_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_ref_wrap_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_regex_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_result_of_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_shared_ptr_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_tt_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_tuple_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_un_map_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_un_set_pass: borland-5.6.4* borland-5.8.2*
tr1_has_tr1_utility_pass: borland-5.6.4* borland-5.8.2*
tr1_has_trivial_assign_test: borland-5.8.2*
tr1_has_trivial_constr_test: borland-5.8.2*
tr1_has_trivial_copy_test: borland-5.8.2*
tr1_has_trivial_destr_test: borland-5.8.2*
tr1_has_virtual_destr_test: borland-5.8.2*
tr1_is_arithmetic_test: borland-5.8.2*
tr1_is_array_test: borland-5.8.2*
tr1_is_class_test: borland-5.8.2*
tr1_is_compound_test: borland-5.8.2*
tr1_is_const_test: borland-5.8.2*
tr1_is_empty_test: borland-5.8.2*
tr1_is_enum_test: borland-5.8.2*
tr1_is_floating_point_test: borland-5.8.2*
tr1_is_function_test: borland-5.8.2*
tr1_is_fundamental_test: borland-5.8.2*
tr1_is_integral_test: borland-5.8.2*
tr1_is_member_func_test: borland-5.8.2*
tr1_is_member_obj_test: borland-5.8.2*
tr1_is_member_pointer_test: borland-5.8.2*
tr1_is_object_test: borland-5.8.2*
tr1_is_pod_test: borland-5.8.2*
tr1_is_pointer_test: borland-5.8.2*
tr1_is_polymorphic_test: borland-5.8.2*
tr1_is_reference_test: borland-5.8.2*
tr1_is_same_test: borland-5.8.2*
tr1_is_scalar_test: borland-5.8.2*
tr1_is_signed_test: borland-5.8.2* borland-5.8.2*
tr1_is_union_test: borland-5.8.2*
tr1_is_unsigned_test: borland-5.8.2* borland-5.8.2*
tr1_is_void_test: borland-5.8.2*
tr1_is_volatile_test: borland-5.8.2*
tr1_remove_cv_test: borland-5.8.2*
tr1_remove_reference_test: borland-5.8.2*
tr1_tky_abstract_type_test: borland-5.8.2*
|tuple|
another_tuple_test_bench: borland-5.6.4* borland-5.8.2*
io_test: borland-5.6.4* borland-5.8.2*
tuple_test_bench: borland-5.6.4* borland-5.8.2*
|type_traits|
add_const_test: borland-5.6.4* borland-5.8.2*
add_cv_test: borland-5.6.4* borland-5.8.2*
add_pointer_test: borland-5.6.4* borland-5.8.2*
add_reference_test: borland-5.6.4* borland-5.8.2*
add_volatile_test: borland-5.6.4* borland-5.8.2*
aligned_storage_test: borland-5.6.4* borland-5.8.2*
alignment_of_test: borland-5.6.4* borland-5.8.2*
function_traits_test: borland-5.6.4* borland-5.8.2*
has_nothrow_assign_test: borland-5.6.4* borland-5.8.2*
has_nothrow_constr_test: borland-5.6.4* borland-5.8.2*
has_nothrow_copy_test: borland-5.6.4* borland-5.8.2*
has_trivial_assign_test: borland-5.6.4* borland-5.8.2*
has_trivial_constr_test: borland-5.6.4* borland-5.8.2*
has_trivial_copy_test: borland-5.6.4* borland-5.8.2*
has_trivial_destructor_test: borland-5.6.4* borland-5.8.2*
has_virtual_destructor_test: borland-5.6.4* borland-5.8.2*
is_arithmetic_test: borland-5.6.4* borland-5.8.2*
is_array_test: borland-5.6.4* borland-5.8.2*
is_class_test: borland-5.6.4* borland-5.8.2*
is_complex_test: borland-5.6.4* borland-5.8.2*
is_compound_test: borland-5.6.4* borland-5.8.2*
is_const_test: borland-5.6.4* borland-5.8.2*
is_empty_test: borland-5.6.4* borland-5.8.2*
is_enum_test: borland-5.6.4* borland-5.8.2*
is_float_test: borland-5.6.4* borland-5.8.2*
is_floating_point_test: borland-5.6.4* borland-5.8.2*
is_function_test: borland-5.6.4* borland-5.8.2*
is_fundamental_test: borland-5.6.4* borland-5.8.2*
is_integral_test: borland-5.6.4* borland-5.8.2*
is_member_func_test: borland-5.6.4* borland-5.8.2*
is_member_obj_test: borland-5.6.4* borland-5.8.2*
is_member_pointer_test: borland-5.6.4* borland-5.8.2*
is_object_test: borland-5.6.4* borland-5.8.2*
is_pod_test: borland-5.6.4* borland-5.8.2*
is_pointer_test: borland-5.6.4* borland-5.8.2*
is_polymorphic_test: borland-5.6.4* borland-5.8.2*
is_reference_test: borland-5.6.4* borland-5.8.2*
is_same_test: borland-5.6.4* borland-5.8.2*
is_scalar_test: borland-5.6.4* borland-5.8.2*
is_signed_test: borland-5.6.4* borland-5.8.2*
is_stateless_test: borland-5.6.4* borland-5.8.2*
is_union_test: borland-5.6.4* borland-5.8.2*
is_unsigned_test: borland-5.6.4* borland-5.8.2*
is_void_test: borland-5.6.4* borland-5.8.2*
is_volatile_test: borland-5.6.4* borland-5.8.2*
remove_cv_test: borland-5.6.4* borland-5.8.2*
remove_reference_test: borland-5.6.4* borland-5.8.2*
tricky_abstract_type_test: borland-5.6.4* borland-5.8.2*
type_with_alignment_test: borland-5.6.4* borland-5.8.2*
udt_specialisations: borland-5.6.4* borland-5.8.2*
|typeof|
data_member_emulation: borland-5.8.2*
experimental_1_emulation: acc borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc msvc-7.1 msvc-8.0 msvc-8.0 sun-5.8
experimental_1_native: gcc-4.1.2_sunos_i86pc msvc-7.1 msvc-8.0 msvc-8.0
experimental_2_emulation: acc borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc sun-5.8
experimental_2_native: gcc-4.1.2_sunos_i86pc
experimental_3_emulation: acc borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc msvc-8.0 msvc-8.0 sun-5.8
experimental_3_native: gcc-4.1.2_sunos_i86pc msvc-8.0 msvc-8.0
experimental_4_emulation: acc borland-5.8.2* borland-5.8.2* gcc-4.1.2_sunos_i86pc sun-5.8
experimental_4_native: gcc-4.1.2_sunos_i86pc
function_ptr_emulation: borland-5.8.2*
function_ptr_from_tpl_emulation: sun-5.8
function_ref_emulation: borland-5.8.2*
member_function_emulation: borland-5.8.2*
noncopyable_emulation: borland-5.8.2*
odr_emulation: borland-5.8.2*
odr_no_uns: borland-5.8.2*
std_emulation: borland-5.8.2*
template_dependent_emulation: borland-5.8.2*
template_enum_emulation: borland-5.8.2*
template_int_emulation: borland-5.8.2*
template_multiword_emulation: borland-5.8.2*
template_tpl_emulation: borland-5.8.2*
template_type_emulation: borland-5.8.2*
type_emulation: borland-5.8.2*
|utility|
addressof_test: borland-5.6.4* borland-5.8.2*
assert_test: borland-5.6.4* borland-5.8.2*
base_from_member_test: borland-5.6.4* borland-5.8.2*
binary_search_test: borland-5.6.4* borland-5.8.2*
call_traits_test: borland-5.8.2*
compressed_pair_test: borland-5.6.4* borland-5.8.2*
current_function_test: borland-5.6.4* borland-5.8.2*
iterators_test: borland-5.6.4* borland-5.8.2*
next_prior_test: borland-5.6.4* borland-5.8.2*
operators_test: borland-5.6.4* borland-5.8.2*
ref_ct_test: borland-5.6.4* borland-5.8.2*
ref_test: borland-5.6.4* borland-5.8.2*
result_of_test: sun-5.8
shared_iterator_test: borland-5.6.4* borland-5.8.2*
value_init_test: borland-5.6.4* borland-5.6.4* borland-5.8.2* borland-5.8.2*
|variant|
variant_comparison_test: borland-5.6.4* borland-5.8.2*
variant_reference_test: borland-5.6.4* borland-5.8.2*
variant_test2: borland-5.6.4* borland-5.8.2*
variant_test3: borland-5.6.4* borland-5.8.2*
variant_test4: borland-5.6.4* borland-5.8.2*
variant_test6: borland-5.6.4* borland-5.8.2*
variant_test7: borland-5.6.4* borland-5.8.2*
variant_test8: borland-5.6.4* borland-5.8.2*
1
0
Interprocess causes numerous "debug assertions" on Windows 64-bit platform.
Since nobody is clicking on the dialog boxes and the process will only be
killed by bjam after 5mins (necessary for some of the libraries), this
results in unbearable long testing times. Please either
1. Disable tests on Win64 or
2. Change the CRT report mode not to show the diaglog box.
Thanks,
Sean
5
12
Hello all,
I have spent the last few weeks locked away in a small, dark room so
that I could finally get the 0.3.8 release out of the way. As the 1.35
release of boost is coming up soon, I am looking to nail as many bugs as
possible beforehand. Bug reports are appreciated.
You can download from here:
http://sourceforge.net/project/showfiles.php?group_id=122478&package_id=134…
Docs here:
http://asio.sourceforge.net/boost_asio_0_3_8/libs/asio/doc/
I'll attend to the backlog of emails once I have recovered from the
ordeal. Thanks for your patience.
Cheers,
Chris
2
1
Dear all,
I have for the second time tried to compile a quickbook version of the
docs for Boost.Range. Without luck. Is there an idiot proof procedure
for getting this loooong toolchain to work on windows?
My current error (after using the automatic install script) is:
$ bjam --v2
warning: Graph library does not contain optional GraphML reader.
note: to enable GraphML support, set EXPAT_INCLUDE and EXPAT_LIBPATH to the
note: directories containing the Expat headers and libraries, respectively.
warning: skipping optional Message Passing Interface (MPI) library.
note: to enable MPI support, add "using mpi ;" to user-config.jam.
note: to suppress this message, pass "--without-mpi" to bjam.
note: otherwise, you can safely ignore this message.
Building Boost.Regex with the optional Unicode/ICU support disabled.
Please refer to the Boost.Regex documentation for more information
(don't panic: this is a strictly optional feature).
...patience...
...found 1052 targets...
...updating 2 targets...
xslt-xsltproc
..\..\..\bin.v2\libs\range\doc\msvc-8.0\debug\threading-multi\boos
t_range.docbook
The system cannot find the path specified.
set XML_CATALOG_FILES=..\..\..\bin.v2/boostbook_catalog.xml
"/bin/xsltproc" --stringparam chunk.first.sections "7" --stringparam
generate.s
ection.toc.level "4" --stringparam toc.section.depth "10" --xinclude -o
"..\..\.
.\bin.v2\libs\range\doc\msvc-8.0\debug\threading-multi\boost_range.docbook"
"d:\
boost\trunk\tools\boostbook\xsl\docbook.xsl"
"..\..\..\bin.v2\libs\range\doc\msv
c-8.0\debug\threading-multi\boost_range.xml"
I'm getting kinda desparate here ... perhaps I should simply commit the
docs and let them be generated on a test server. Do we have such a
functionality in place?
Thanks in advance
-Thorsten
6
17
[ 225 open bugs today, 228 last report (Monday) ]
[ Back home after being evacuated... ]
If you are maintaining a library, and have not logged into the trac system
at <http://svn.boost.org/trac/boost/>, please do so ASAP. Until you do that,
no tickets can be assigned to you, and will remain under "None".
Instructions on working with tickets can be found at:
<http://svn.boost.org/trac/boost/wiki/TicketWorkflow>
and a mapping of user names to "real names" can be found at:
<http://svn.boost.org/trac/boost/report/16>
Bug summary
18 ramey
16 dgregor
15 djowel
15 az_sw_dude
14 grafik
13 None
12 doug_gregor
11 turkanis
10 rogeeff
8 dave
7 jsiek
7 anthonyw
7 agurtovoy
6 vladimir_prus
6 bemandawes
5 witt
5 samuel_krempp
4 shammah
4 nesotto
4 johnmaddock
4 fcacciola
3 pdimov
3 jbandela
3 igaztanaga
3 danielw
2 urzuga
2 t_schwinger
2 nasonov
2 jmaurer
2 hubert_holin
2 hkaiser
2 ebf
1 speedsnail
1 samuel_k
1 pavol_droba
1 kaalus
1 guwi17
1 dlwalker
1 aaron_windsor
1 <Blank>
<Blank> 1307 [lambda] invalid boostbook
None 1048 Spirit returns full = false in 1.34 if there is trailing
spaces in input
None 1068 Mersenne twister disables streaming for Visual C++
None 1094 Finding the correct library to link (feature request for
pkg-config support)h
None 1187 bcp copy not needed files
None 1222 lambda::ret<T> should declare result_type.
None 1247 Typos in "boost/random/additive_combine.hpp"_ lines 68-69
None 1252 [pool] severe overhead with unaligned sizes.
None 1270 uniform_smallint doesn't compile with lagged_fibonacci
random number generators
None 1291 config.hpp fails to compile with gcc -Wundef
None 1311 Can't call base members on derived object in unit_test
None 1342 dylib library names broken in Mac OS X
None 960 [random] lognormal_distribution problem
None 991 [pool]
aaron_windsor 778 top-level configure is broken
agurtovoy 1001 gcc 4.1.2 segfaults on mpl/test/apply.cpp
agurtovoy 1051 MPL header ordering triggers bug
agurtovoy 1099 unable to iterate through a "non-explicitly-declared" mpl::set
agurtovoy 1215 Boost 1.34.1_ mpl: Wrong workaround detection using
MinGW32 (or.hpp_ line #33)
agurtovoy 1317 has_xxx randomly broken in msvc
agurtovoy 588 mpl::remove compile error with gcc 4.1.0
agurtovoy 640 documentation mistake
anthonyw 1154 tss destruction segfaults in conjunction with dlopen/dlclose
anthonyw 1168 [thread] tss crashes randomly
anthonyw 1226 macro TEXT() in GetProcAddress()
anthonyw 1268 xtime_cmp changes to deal with overflow were reverted
anthonyw 1323 Assertion Error during cleanup after running out of
thread resources
anthonyw 876 xtime documentation incomplete
anthonyw 881 errors when build with Apache stdcxx
az_sw_dude 1028 typo in boost header: date_time/time_defs.hpp
az_sw_dude 1078 from_iso_string cannot read the output from to_iso_string
az_sw_dude 1098 Urgent libboost-date-time1.33.1 : bugs on ia64 ?
az_sw_dude 1147 date_time library contains global #define ERROR
az_sw_dude 1160 warning: month_format shadows a member of this
az_sw_dude 1162 warning: ticks shadows a member of this
az_sw_dude 1289 posix_time::time_facet forgets to pass a_ref argument
to base class
az_sw_dude 1299 change in typedef stringstream_type in
format_date_parser.hpp causing compilation error
az_sw_dude 1306 invalid docbook in date_period.xml
az_sw_dude 287 wrong usage of ios_base::narrow
az_sw_dude 316 date_time type conversion warning
az_sw_dude 604 from_ftime incorrectly processes FILETIME filled with zeros
az_sw_dude 642 operator<< for gregorian::date_duration not found
az_sw_dude 889 Insane Dependencies
az_sw_dude 890 date_time library supports only the current dst rule
bemandawes 1230 mbstate uninitialized
bemandawes 1312 boost::filesystem link error on mac os x
bemandawes 1378 filesystem path invalid name for hidden files (LINUX)
bemandawes 559 linker error mingw 3.4.5
bemandawes 752 directory_iterator doesn't work with catch
bemandawes 897 exists() throws exeption on existing but locked file on wind
danielw 1044 Argument pack inaccessable in a functions return type
danielw 1054 Parameter takes an "infinite" amount of time to compile
with the Intel compiler.
danielw 1097 keyword.hpp generates many warnings C4180: qualifier
applied to function type has no meaning; ignored
dave 1010 linking boost.python on freebsd
dave 1019 iterator_facade::pointer should be the return type of
operator-> (DR 445)
dave 1085 Python rules for compiling in Mac OS X
dave 1096 Tutorial needs updating for BBv2
dave 1179 [boost.python] can not export a union in VC2005sp1
dave 1181 [boost.python] can modify enum value
dave 865 Use of C++0x keyword as identifier
dave 910 gcc strict-aliasing problems with python
dgregor 1002 [iostreams] close_impl<closable_tag> does not comply with spec
dgregor 1003 [iostreams] copy-paste error in typedefs for wchar
multichar_filters
dgregor 1011 amd64: #error Boost.Numeric.Interval: Please specify
rounding control mechanism.
dgregor 1139 [iostreams] Regex filter segfaults when zero matches found
dgregor 1140 boost::iostreams linked_streambuf bug
dgregor 1149 Minor doc error in basic_null_device
dgregor 1164 Floyd Warshall broken with unsigned edge weights
dgregor 1185 iostreams::direct_streambuf<T_Tr>::is_open always
returns false if output iterator is not null
dgregor 1192 [boostbook] problem when two files have the same name
dgregor 1199 configure doesn't work with path containing whitespaces (MacOS X)
dgregor 1232 mapped_file_source::is_open() is broken under windows
dgregor 1310 [result_of] const-qualified function pointer doesn't work
dgregor 1326 Unable to check graph isomorphism using LEDA adapter
dgregor 556 Bundled graph properties
dgregor 732 Johnson All-Pairs needs better "no path" information
dgregor 736 Const correctness violation
djowel 1170 Emit Warnings instead of # symbols in the syntax highlighter
djowel 1171 Quickbook title output
djowel 1172 non-utf
djowel 1176 Space after inline code
djowel 1206 Escaping from within code?
djowel 1273 CR+LF newlines in position_iterator
djowel 1276 spirit problem with _GLIBCXX_DEBUG
djowel 1277 Closing section like [pre with } causes Quickbok to crash
djowel 1280 sections in imported source files get put inside <para>
elements in docbook output
djowel 1281 Quickbook produces invalid BoostBook/DocBook XML
djowel 1324 tuple should have a swap() that operates element-by-element
djowel 1328 boost::spirit concurrency gap
djowel 241 Miss " = ParserT()"
djowel 314 spirit insert_key_actor.hpp
djowel 664 crash in boost::spirit::parse
dlwalker 613 boost/crc.hpp uses non-standard conforming syntax
doug_gregor 1021 [Graph][reverse_graph] Problem using reverse_graph
adapter with an adapted user defined graph
doug_gregor 1076 compile error: disconnecting struct with
operator()() doesn't work in VS2005 SP1
doug_gregor 375 LEDA graph adaptors do not handle hidden nodes properly
doug_gregor 402 random_vertex/random_edge are unnecessarily inefficient
doug_gregor 403 Document copy_component
doug_gregor 447 reverse_graph and constness of property maps
doug_gregor 708 Dijkstra no_init version should not require VertexListGraph
doug_gregor 733 Numbered headers don't work with "preferred" syntax
doug_gregor 735 Fruchterman-Reingold grid performance can be improved
doug_gregor 738 Memory leaks with signal::connect?
doug_gregor 829 Implicit graph not implement
doug_gregor 852 Problem with Boost and GCC 4.1
ebf 965 [doc] boost::variant tutorial - final example uses v1_v2
should be seq1_seq2
ebf 993 Variant should use least common multiple of alignments_
rather than maximum
fcacciola 1217 value_initialized leaves data uninitialized_ when using MSVC
fcacciola 1301 copy-initialization from const-qualified object doesn't work
fcacciola 617 Numeric Conversion Documentation minor bug
fcacciola 818 No zero-argument in_place()
grafik 1023 inspect
grafik 1041 Cygwin requires PATH setting.
grafik 1062 Cygwin install stage fails with combination of patches
grafik 1146 KAI Referenced in compiler status acknowledgements
grafik 1233 Boost website still refers to CVS
grafik 1244 Broken links to unit test examples
grafik 1318 http links have gone bad in boost.test documentation
grafik 1322 trac rejects patch attachment as spam
grafik 546 boost.build needs fixes for HP/UX
grafik 616 Boost Jam_ and non english directorys
grafik 896 <native-wchar_t>off does not work when build with vc-8.0
grafik 959 linking fails when Boost is compiled with STLport 5.1.* on
Linux (names mismatch)
grafik 977 bjam crashes when compiled with gcc 4.2
grafik 986 Problem building Python modules on boost 1.34.0
guwi17 1237 Resizing symmetric matrices
hkaiser 1077 Spirit integer parser does not always detect integer overflow
hkaiser 1079 boost-1.34.0 fails to compile. concept checks not satisfied.
hubert_holin 162 Cannot compile octonion_test.cpp because of bug in sinc.hpp
hubert_holin 647 octonion documentation bug
igaztanaga 1080 boost::interprocess win32 global file mapping issue
igaztanaga 1210 interprocess::barrier hangs during second use under
linux (boost 1.33.1)
igaztanaga 1231 interprocess_condition (emulated) hangs after notify_all().
jbandela 283 Compiler error for tokenizer on Solaris
jbandela 501 token_iterator::at_end() result is inversed
jbandela 665 bug in char_separator
jmaurer 351 Diff in state of mersenne_twister gen between GCC3.41 & CW9
jmaurer 819 uniform_int<> with type's maximum availaible range error
johnmaddock 1081 Empty string rejected as perl-style regex
johnmaddock 1083 boost_regex 1.34.0 uses ICU library without linking to it
johnmaddock 1148 boost_1_34_1 regex library compile failure on aix with xlv
johnmaddock 1314 Using SSE-intrinsics in VC8 causes static assert in
type_with_alignment.hpp
jsiek 416 Spelling of Edmonds-Karp-Algorithm
jsiek 575 Calling subgraph::global_to_local on a root graph
jsiek 636 strange compiling problem for transitive_closure
jsiek 813 concept_check.hpp unused variable warning
jsiek 815 remove_edge core dumps on self-circle
jsiek 875 No iterator based constructor for adjacency_matrix
jsiek 900 graphml reader namespace handling is broken
kaalus 1184 property_tree assignment (operator) bug
nasonov 1220 lexical_cast requires RTTI
nasonov 754 boost::any - typeid comparison across shared boundaries
nesotto 1145 Small bugs in Boost.Range documentation
nesotto 1284 [range] sub_range assignment issue
nesotto 1327 iterator value_type possibly cv-qualified
nesotto 723 local_time_facet error in VS2005 Win2003
pavol_droba 1152 rle_example fails
pdimov 1106 shared_ptr<T> should not convert to shared_ptr<U> when T*
doesn't convert to U*
pdimov 1108 shared_ptr does not compile under g++ with -fno-rtti
pdimov 997 error in boost::bind doc
ramey 1036 assert failure in oserializer.hpp:418
ramey 1038 "<" and ">" should be excaped in xml_oarchive
ramey 1086 Serialization of weak_ptr produces invalid XML
ramey 1089 missing boost::serialization::make_nvp in pointer container library
ramey 1121 xml_archive_exception is missing seperate header file_ and
documentation mismatch
ramey 1137 Virtual destructor is missing
ramey 1141 Dangerious operator<< for wostream
ramey 1142 boost/serialization/optional doesn't include necessary header
ramey 1223 boost::serialization chokes on correcly formatted empty XML element
ramey 1267 Assertion `new_cid == cid' failed in basic_iarchive
ramey 1285 [serialization] problem when including shared_ptr_132.hpp
ramey 1286 Missing/Incorrect dllimport/dllexport directives prevent
Windows DLLs from building
ramey 1290 Serialization export.hpp (or type_info_implementation.hpp)
is NOT self-contained and causes compile error
ramey 757 xml serialization fails when using namespace
ramey 878 error C2039: 'mbstate_t' : is not a member of 'std'
ramey 961 boost::basic_binary_oprimitive not instantiated correctly
ramey 968 xml_grammar - incorrect define char
ramey 969 basic_binary_iprimitive::load_binary bug
rogeeff 1030 execution_monitor.ipp #warning directive breaks
compilation on MSVC 8.0
rogeeff 1032 typo in Boost.Test documentation
rogeeff 1050 BOOST_CHECK_CLOSE_FRACTION documentation missing
rogeeff 1060 no example sources in online docs for Boost::Test
rogeeff 1212 Template fixtures
rogeeff 607 Log level names wrong in documentation
rogeeff 842 typo in auto_unit_test.hpp Revision 1.17
rogeeff 893 grammatical error in error message
rogeeff 956 Doc error in test examples.
rogeeff 962 Missing links in Test library documentation
samuel_k 585 64 bit compile warning/error for boost::format
samuel_krempp 1195 patch: boost/format/parsing.hpp does not compile
if BOOST_NO_LOCALE_ISDIGIT is defined
samuel_krempp 1196 Patch: when BOOST_NO_STD_LOCALE is not defined_
boost/format/internals.hpp fails to compile.
samuel_krempp 1278 declaration of 'str' shadows a member of 'this'
samuel_krempp 704 format zero length string msvc-8
samuel_krempp 859 boost::format ignores a user defined locale
shammah 284 pool::purge_memory() does not reset next_size
shammah 290 perfomance: memory cleanup for pool takes too long
shammah 386 boost::pool_allocator breaks with vector of vectors
shammah 88 ct_gcd_lcm.hpp compilation error
speedsnail 1138 Problems with TSS and static thread library
t_schwinger 1100 Building boost.function_types fails cvs rev-1.1_ no
chdir command in bash
t_schwinger 1332 Inclusion of non existing file
boost/fusion/sequence/utility/unpack_args.hpp in
boost/fusion/sequence/utility.hpp
turkanis 1033 iostreams::restrict doesn't work on an iostreams::file_source
turkanis 1070 [iostreams]boost\iostreams\copy.hpp line80 copy_impl
turkanis 525 problem with boost::iostreams when compiled with Visual C++
turkanis 699 Changing size of memory-mapped file on Windows
turkanis 786 bug in iostreams/copy.hpp line 81
turkanis 791 iostreams::tee_filter is for output only
turkanis 817 Performance problem in iostreams
turkanis 822 Incorrect usage of bad_write()_ bad_seek() etc.
turkanis 823 Seekable file_descriptor_source /sink?
turkanis 824 BOOST_IOSTREAMS_HAS_LSEEK64 on Mac OS X
turkanis 856 iostreams file_descriptor::write fails under Win32
urzuga 574 [boost::lambda] Compile error with libstdc++ debug mode
urzuga 781 Lambda: (_1 + "y")(string("x")) Doesn't Compile
vladimir_prus 1165 more quoting problems
vladimir_prus 1274 Useless error message
vladimir_prus 1275 boost::program_options::validation_error::what() is private
vladimir_prus 1321 invalid docbook in tool documentation
vladimir_prus 469 multitoken broken
vladimir_prus 689 [program_options] Endless loop with long default arguments
witt 1046 Boost.Python quickstart instructions mention nonexistent target
witt 583 Fixes for build on IBM pSeries for AIX and Linux
witt 834 Homepage regression links
witt 957 The "Getting Started" page does not mention the stdlib option
witt 973 zip_iterator has value_type == reference
--
-- Marshall
Marshall Clow Qualcomm, Inc. <mailto:mclow@qualcomm.com>
The famous British scientist, Lord Kelvin, said: "When you measure
what you are speaking about and express it in numbers, you know
something about it, but when you cannot (or do not) measure it, when
you cannot (or do not) express it in numbers, then your knowledge is
of a meagre and unsatisfactory kind."
1
0
Hi,
Trying to get the documentation for BOOST_CHECK_CLOSE_FRACTION
(http://www.boost.org/libs/test/doc/components/test_tools/reference/index.ht…)
I fail with:
An error has been encountered in accessing this page.
1. Server: www.boost.org
2. URL path:
/libs/test/doc/components/test_tools/reference/BOOST_CHECK_CLOSE_FRACTION.html
3. Error notes: File does not exist:
/home/groups/b/bo/boost/htdocs/libs/test/doc/components/test_tools/reference/BOOST_CHECK_CLOSE_FRACTION.html
4. Error type: 404
5. Request method: GET
6. Request query string:
7. Time: 2007-10-25 06:47:03 PDT (1193320023)
Jens
2
1
I would like to commit attached patch to bimap to silence a few of the many
warning I get when using bimap. Any objections?
Regards,
Markus
Index: bimap/detail/set_view_iterator.hpp
===================================================================
--- bimap/detail/set_view_iterator.hpp (revision 40457)
+++ bimap/detail/set_view_iterator.hpp (working copy)
@@ -86,7 +86,7 @@
// Serialization support
- BOOST_SERIALIZATION_SPLIT_MEMBER();
+ BOOST_SERIALIZATION_SPLIT_MEMBER()
friend class ::boost::serialization::access;
@@ -162,7 +162,7 @@
// Serialization support
- BOOST_SERIALIZATION_SPLIT_MEMBER();
+ BOOST_SERIALIZATION_SPLIT_MEMBER()
friend class ::boost::serialization::access;
Index: bimap/detail/map_view_iterator.hpp
===================================================================
--- bimap/detail/map_view_iterator.hpp (revision 40457)
+++ bimap/detail/map_view_iterator.hpp (working copy)
@@ -88,7 +88,7 @@
// Serialization support
- BOOST_SERIALIZATION_SPLIT_MEMBER();
+ BOOST_SERIALIZATION_SPLIT_MEMBER()
friend class ::boost::serialization::access;
@@ -169,7 +169,7 @@
// Serialization support
- BOOST_SERIALIZATION_SPLIT_MEMBER();
+ BOOST_SERIALIZATION_SPLIT_MEMBER()
friend class ::boost::serialization::access;
Index: bimap/relation/member_at.hpp
===================================================================
--- bimap/relation/member_at.hpp (revision 40457)
+++ bimap/relation/member_at.hpp (working copy)
@@ -63,12 +63,10 @@
struct info {};
-};
+}
} // namespace relation
} // namespace bimaps
} // namespace boost
#endif // BOOST_BIMAP_RELATION_MEMBER_AT_HPP
-
-
2
2