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
- 29 participants
- 33385 discussions
AMDG
Mathias Gaunard wrote:
> I am currently writing an object container similar to boost.any but with
> an allocator template parameter. That allocator is of a custom type that
> allows efficient stack allocation like boost.variant.
>
> While looking at variant's documentation, I became aware of the problem
> with operator= and the never-empty guarantee.
> http://boost.org/doc/html/variant/design.html#variant.design.never-empty
>
> However, I think none of the solutions is really satisfying, especially
> in my case where the allocator is generic and provided by the user and
> where the types that are to be put in the container aren't known until
> runtime.
> Lots of versions would need to be made, indicating whether one or
> another option is nothrow for the object or the allocator, providing
> fallback allocators etc.
>
> Do you think it is reasonable to simply require a nothrow move
> constructor for the types which are to be put into my container?
> I cannot think of a case where move constructors would really want to
> throw, and swap functions which are similar are usually no-throw.
>
I don't think it would be a good idea to require this
True, move functions should not throw, but they
might not even exist. You could define a trait
template<class T> struct has_nothrow_move;
defaulting to boost::has_nothrow_copy<T>
and create the object on the heap when this returns false.
> There is also the 'false hopes' solution, which is said to not be
> allowed by the standard.
> But realistically, that solution shouldn't cause any problem, since I
> always see moving as a simple bitwise copy ; unless the object
> references itself, which would be solved by moving it back anyway.
>
As mentioned, that solution causes can cause an unresolvable race condition.
For example this class could not be used in a variant then.
class C {
public:
explicit C(int i = 0) : n(i) {
register_object(this);
}
~C() {
unregister_object(this);
}
static void increment_all() {
std::for_each(objects.begin(), objects.end(), ++*_1);
}
C& operator++() {
boost::mutex::scoped_lock l(m2);
++n;
return(*this);
}
private:
static std::set<C*> objects;
static boost::mutex m1;
void register_object(C* c) {
boost::mutex::scoped_lock l(m1);
objects.insert(c);
}
void unregister_object(C* c) {
boost::mutex::scoped_lock l(m1);
objects.erase(c);
}
boost::mutex m2;
int n;
};
Even single-threaded this can cause problems if the old object
stores a pointer to itself somewhere and removes it from the
destructor. This happens if the constructor of the new object.
uses the pointer to the old object if the old object still exists.
Continuing the example above
class UsesC {
public:
UsesC() : i(0) {
}
UsesC(const UsesC& other) : i(other.i) {
C::increment_all();
}
private:
int i;
};
C c;
boost::variant<C, UsesC> v(c);
v = UsesC();
// v.get<UsesC>().i == 1 !!!
The call to increment_all clobbers the
value that was just constructed.
> I welcome any critics, ideas and advices about moving, exceptions, and
> bitwise copy.
In Christ,
Steven Watanabe
2
2
I'm requesting a formal review of the Floating Point Utilities
library.
The library contains the following:
1. Floating point number classification functions: fpclassify, isfinite,
isinf, isnan, isnormal (Follows TR1)
2. Sign bit functions: signbit, copysign, changesign (Follows TR1)
3. Facets that format and parse infinity and NaN according to the C99
standard. (These can be used for portable handling of infinity and NaN
in text streams.)
The library is available in the vault in the folder Math-Numerics.
(I've posted this message before, but with the wrong subject line.)
--Johan Råde
2
1
Boost Regression test failures
Report time: 2007-01-29T14:23:36Z
This report lists all regression test failures on release platforms.
Detailed report:
http://engineering.meta-comm.com/boost-regression/CVS-RC_1_34_0/developer/i…
The following platforms have a large number of failures:
borland-5.8.2
msvc-6.5
1624 failures in 7 libraries (5 are from non-broken platforms)
date_time (0 of 14 failures are from non-broken platforms)
dynamic_bitset (0 of 1 failures are from non-broken platforms)
multi_index (0 of 2 failures are from non-broken platforms)
regex (1 of 3 failures are from non-broken platforms)
serialization (0 of 1582 failures are from non-broken platforms)
test (1 of 19 failures are from non-broken platforms)
wave (3)
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.
|date_time|
testgreg_serialize: borland-5.8.2* borland-5.8.2*
testgreg_serialize_dll: borland-5.8.2* borland-5.8.2*
testgreg_serialize_xml: borland-5.8.2* borland-5.8.2*
testtime_serialize: borland-5.8.2* borland-5.8.2*
testtime_serialize_std_config: borland-5.8.2* borland-5.8.2*
testtime_serialize_xml: borland-5.8.2* borland-5.8.2*
testtime_serialize_xml_std_config: borland-5.8.2* borland-5.8.2*
|dynamic_bitset|
dyn_bitset_unit_tests2: borland-5.8.2*
|multi_index|
test_serialization: msvc-6.5* msvc-6.5*
|regex|
regex_config_info: borland-5.8.2* borland-5.8.2*
regex_regress_threaded: msvc-8.0
|serialization|
test_array_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_array_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_binary_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_text_warchive_dll: borland-5.8.2* borland-5.8.2*
test_class_info_load_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_load_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_class_info_save_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_contained_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_cyclic_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_delete_pointer_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo: borland-5.8.2* borland-5.8.2*
test_demo_auto_ptr: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_auto_ptr_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_dll: borland-5.8.2* borland-5.8.2*
test_demo_exception: borland-5.8.2* borland-5.8.2*
test_demo_exception_dll: borland-5.8.2* borland-5.8.2*
test_demo_fast_archive: borland-5.8.2* borland-5.8.2*
test_demo_fast_archive_dll: borland-5.8.2* borland-5.8.2*
test_demo_pimpl: borland-5.8.2* borland-5.8.2*
test_demo_pimpl_dll: borland-5.8.2* borland-5.8.2*
test_demo_polymorphic: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_polymorphic_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_portable_archive: borland-5.8.2* borland-5.8.2*
test_demo_portable_archive_dll: borland-5.8.2* borland-5.8.2*
test_demo_shared_ptr: borland-5.8.2* borland-5.8.2*
test_demo_shared_ptr_dll: borland-5.8.2* borland-5.8.2*
test_demo_xml: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_xml_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_demo_xml_load: borland-5.8.2* borland-5.8.2*
test_demo_xml_load_dll: borland-5.8.2* borland-5.8.2*
test_demo_xml_save: borland-5.8.2* borland-5.8.2*
test_demo_xml_save_dll: borland-5.8.2* borland-5.8.2*
test_deque_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_deque_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_derived_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_diamond_binary_archive: borland-5.8.2* borland-5.8.2*
test_diamond_binary_archive_dll: borland-5.8.2* borland-5.8.2*
test_diamond_text_archive: borland-5.8.2* borland-5.8.2*
test_diamond_text_archive_dll: borland-5.8.2* borland-5.8.2*
test_diamond_text_warchive: borland-5.8.2* borland-5.8.2*
test_diamond_text_warchive_dll: borland-5.8.2* borland-5.8.2*
test_diamond_xml_archive: borland-5.8.2* borland-5.8.2*
test_diamond_xml_archive_dll: borland-5.8.2* borland-5.8.2*
test_diamond_xml_warchive: borland-5.8.2* borland-5.8.2*
test_diamond_xml_warchive_dll: borland-5.8.2* borland-5.8.2*
test_exported_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_exported_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_list_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_binary_archive: borland-5.8.2* borland-5.8.2*
test_map_binary_archive_dll: borland-5.8.2* borland-5.8.2*
test_map_text_archive: borland-5.8.2* borland-5.8.2*
test_map_text_archive_dll: borland-5.8.2* borland-5.8.2*
test_map_text_warchive: borland-5.8.2* borland-5.8.2*
test_map_text_warchive_dll: borland-5.8.2* borland-5.8.2*
test_map_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_map_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_mi_binary_archive: borland-5.8.2* borland-5.8.2*
test_mi_binary_archive_dll: borland-5.8.2* borland-5.8.2*
test_mi_text_archive: borland-5.8.2* borland-5.8.2*
test_mi_text_archive_dll: borland-5.8.2* borland-5.8.2*
test_mi_text_warchive: borland-5.8.2* borland-5.8.2*
test_mi_text_warchive_dll: borland-5.8.2* borland-5.8.2*
test_mi_xml_archive: borland-5.8.2* borland-5.8.2*
test_mi_xml_archive_dll: borland-5.8.2* borland-5.8.2*
test_mi_xml_warchive: borland-5.8.2* borland-5.8.2*
test_mi_xml_warchive_dll: borland-5.8.2* borland-5.8.2*
test_mult_archive_types: borland-5.8.2* borland-5.8.2*
test_mult_archive_types_dll: borland-5.8.2* borland-5.8.2*
test_multiple_ptrs_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_multiple_ptrs_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_no_rtti_binary_archive: msvc-6.5* msvc-6.5*
test_no_rtti_binary_archive_dll: msvc-6.5* msvc-6.5*
test_no_rtti_text_archive: msvc-6.5* msvc-6.5*
test_no_rtti_text_archive_dll: msvc-6.5* msvc-6.5*
test_no_rtti_text_warchive: msvc-6.5* msvc-6.5*
test_no_rtti_text_warchive_dll: msvc-6.5* msvc-6.5*
test_no_rtti_xml_archive: msvc-6.5* msvc-6.5*
test_no_rtti_xml_archive_dll: msvc-6.5* msvc-6.5*
test_no_rtti_xml_warchive: msvc-6.5* msvc-6.5*
test_no_rtti_xml_warchive_dll: msvc-6.5* msvc-6.5*
test_non_default_ctor2_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor2_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_default_ctor_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_non_intrusive_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_null_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_nvp_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_object_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_optional_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_polymorphic_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_primitive_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_private_ctor: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_private_ctor_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_recursion_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_registered_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_reset_object_address: borland-5.8.2* borland-5.8.2*
test_reset_object_address_dll: borland-5.8.2* borland-5.8.2*
test_set_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_set_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_132_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_shared_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_ptr_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_simple_class_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_split_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_tracking_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_unregistered_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_variant_binary_archive: msvc-6.5* msvc-6.5*
test_variant_binary_archive_dll: msvc-6.5* msvc-6.5*
test_variant_text_archive: msvc-6.5* msvc-6.5*
test_variant_text_archive_dll: msvc-6.5* msvc-6.5*
test_variant_text_warchive: msvc-6.5* msvc-6.5*
test_variant_text_warchive_dll: msvc-6.5* msvc-6.5*
test_variant_xml_archive: msvc-6.5* msvc-6.5*
test_variant_xml_archive_dll: msvc-6.5* msvc-6.5*
test_variant_xml_warchive: msvc-6.5* msvc-6.5*
test_variant_xml_warchive_dll: msvc-6.5* msvc-6.5*
test_vector_binary_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_binary_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_text_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_archive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_archive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_warchive: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_vector_xml_warchive_dll: borland-5.8.2* borland-5.8.2* msvc-6.5* msvc-6.5*
test_void_cast: borland-5.8.2* borland-5.8.2*
test_void_cast_dll: borland-5.8.2* borland-5.8.2*
|test|
boost_check_equal_str: msvc-6.5* msvc-6.5*
errors_handling_test: msvc-6.5* msvc-6.5*
fixed_mapping_test: msvc-6.5* msvc-6.5*
ifstream_line_iterator_test: msvc-6.5* msvc-6.5*
output_test_stream_test: msvc-6.5* msvc-6.5*
parameterized_test_test: msvc-6.5* msvc-6.5*
prg_exec_fail3: cw-9.4
result_report_test: msvc-6.5* msvc-6.5*
test_case_template_test: msvc-6.5* msvc-6.5*
test_tools_test: msvc-6.5* msvc-6.5*
|wave|
test_re2c_lexer: hp_cxx-71_006_tru64
test_slex_lexer: hp_cxx-71_006_tru64
testwave_dll: hp_cxx-71_006_tru64
2
2
[ Up from 91 last Wednesday; 89 a week ago ]
Bug count: 92
12 dgregor
10 vladimir_prus
6 nesotto
6 beman_dawes
6 az_sw_dude
5 turkanis
5 jsiek
4 shammah
4 samuel_k
4 grafik
3 nobody
3 jmaurer
3 jbandela
3 djowel
2 urzuga
2 hubert_holin
2 fcacciola
2 dlwalker
2 agurtovoy
1 pdimov
1 nmusatti
1 mistevens
1 mclow
1 johnmaddock
1 daniel_wallin
1 alnsn
1 aaron_windsor
Assignee: aaron_windsor <http://sourceforge.net/users/aaron_windsor/>
Summary: top-level configure is broken
Bug #: 1598153
<http://sourceforge.net/tracker/index.php?func=detail&aid=1598153&group_id=7…>
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: mpl::remove compile error with gcc 4.1.0
Bug #: 1453180
<http://sourceforge.net/tracker/index.php?func=detail&aid=1453180&group_id=7…>
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: documentation mistake
Bug #: 1497329
<http://sourceforge.net/tracker/index.php?func=detail&aid=1497329&group_id=7…>
Assignee: alnsn <http://sourceforge.net/users/alnsn/>
Summary: boost::any - typeid comparison across shared boundaries
Bug #: 1577259
<http://sourceforge.net/tracker/index.php?func=detail&aid=1577259&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: wrong usage of ios_base::narrow
Bug #: 989487
<http://sourceforge.net/tracker/index.php?func=detail&aid=989487&group_id=75…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: date_time type conversion warning
Bug #: 1069225
<http://sourceforge.net/tracker/index.php?func=detail&aid=1069225&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: from_ftime incorrectly processes FILETIME filled with zeros
Bug #: 1471025
<http://sourceforge.net/tracker/index.php?func=detail&aid=1471025&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: operator<< for gregorian::date_duration not found
Bug #: 1498778
<http://sourceforge.net/tracker/index.php?func=detail&aid=1498778&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: Unused argument warnings in serialization code
Bug #: 1600530
<http://sourceforge.net/tracker/index.php?func=detail&aid=1600530&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: Daylight Saving Time
Bug #: 1647261
<http://sourceforge.net/tracker/index.php?func=detail&aid=1647261&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: linker error mingw 3.4.5
Bug #: 1426819
<http://sourceforge.net/tracker/index.php?func=detail&aid=1426819&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: VC8 can't find windows.h even though environment is correct!
Bug #: 1468124
<http://sourceforge.net/tracker/index.php?func=detail&aid=1468124&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: Log level names wrong in documentation
Bug #: 1475886
<http://sourceforge.net/tracker/index.php?func=detail&aid=1475886&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: [filesystem] portable_posix_name() may fail on premain call
Bug #: 1509633
<http://sourceforge.net/tracker/index.php?func=detail&aid=1509633&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: significantly different timer class behaviour on Win and Lin
Bug #: 1520489
<http://sourceforge.net/tracker/index.php?func=detail&aid=1520489&group_id=7…>
Assignee: beman_dawes <http://sourceforge.net/users/beman_dawes/>
Summary: directory_iterator doesn't work with catch
Bug #: 1576175
<http://sourceforge.net/tracker/index.php?func=detail&aid=1576175&group_id=7…>
Assignee: daniel_wallin <http://sourceforge.net/users/daniel_wallin/>
Summary: [Parameter] Docco error section 2.7.2
Bug #: 1378446
<http://sourceforge.net/tracker/index.php?func=detail&aid=1378446&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: LEDA graph adaptors do not handle hidden nodes properly
Bug #: 1168431
<http://sourceforge.net/tracker/index.php?func=detail&aid=1168431&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: random_vertex/random_edge are unnecessarily inefficient
Bug #: 1204684
<http://sourceforge.net/tracker/index.php?func=detail&aid=1204684&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Document copy_component
Bug #: 1204688
<http://sourceforge.net/tracker/index.php?func=detail&aid=1204688&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: reverse_graph and constness of property maps
Bug #: 1246336
<http://sourceforge.net/tracker/index.php?func=detail&aid=1246336&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Bundled graph properties
Bug #: 1420498
<http://sourceforge.net/tracker/index.php?func=detail&aid=1420498&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Dijkstra no_init version should not require VertexListGraph
Bug #: 1540116
<http://sourceforge.net/tracker/index.php?func=detail&aid=1540116&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Johnson All-Pairs needs better 'no path' information
Bug #: 1567811
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567811&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Numbered headers don't work with 'preferred' syntax
Bug #: 1567812
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567812&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Fruchterman-Reingold grid performance can be improved
Bug #: 1567818
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567818&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Const correctness violation
Bug #: 1567821
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567821&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Memory leaks in adjacency_list?
Bug #: 1567828
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567828&group_id=7…>
Assignee: dgregor <http://sourceforge.net/users/dgregor/>
Summary: Memory leaks with signal::connect?
Bug #: 1567829
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567829&group_id=7…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: Miss ' = ParserT()'
Bug #: 907299
<http://sourceforge.net/tracker/index.php?func=detail&aid=907299&group_id=75…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: spirit insert_key_actor.hpp
Bug #: 1059936
<http://sourceforge.net/tracker/index.php?func=detail&aid=1059936&group_id=7…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: crash in boost::spirit::parse
Bug #: 1509978
<http://sourceforge.net/tracker/index.php?func=detail&aid=1509978&group_id=7…>
Assignee: dlwalker <http://sourceforge.net/users/dlwalker/>
Summary: boost/crc.hpp uses non-standard conforming syntax
Bug #: 1478435
<http://sourceforge.net/tracker/index.php?func=detail&aid=1478435&group_id=7…>
Assignee: dlwalker <http://sourceforge.net/users/dlwalker/>
Summary: 'Bug' in comment (x2)
Bug #: 1588359
<http://sourceforge.net/tracker/index.php?func=detail&aid=1588359&group_id=7…>
Assignee: fcacciola <http://sourceforge.net/users/fcacciola/>
Summary: Numeric Conversion Documentation minor bug
Bug #: 1480954
<http://sourceforge.net/tracker/index.php?func=detail&aid=1480954&group_id=7…>
Assignee: fcacciola <http://sourceforge.net/users/fcacciola/>
Summary: optional documentation
Bug #: 1587134
<http://sourceforge.net/tracker/index.php?func=detail&aid=1587134&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: boost jam problem with parallel builds
Bug #: 1234224
<http://sourceforge.net/tracker/index.php?func=detail&aid=1234224&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: boost.build needs fixes for HP/UX
Bug #: 1395924
<http://sourceforge.net/tracker/index.php?func=detail&aid=1395924&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Wrong .bat name in vc-8_0-x86_amd64-tools.jam
Bug #: 1548427
<http://sourceforge.net/tracker/index.php?func=detail&aid=1548427&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Generated files '@()' don't work in regular expressions.
Bug #: 1549607
<http://sourceforge.net/tracker/index.php?func=detail&aid=1549607&group_id=7…>
Assignee: hubert_holin <http://sourceforge.net/users/hubert_holin/>
Summary: Cannot compile octonion_test.cpp because of bug in sinc.hpp
Bug #: 751289
<http://sourceforge.net/tracker/index.php?func=detail&aid=751289&group_id=75…>
Assignee: hubert_holin <http://sourceforge.net/users/hubert_holin/>
Summary: octonion documentation bug
Bug #: 1499814
<http://sourceforge.net/tracker/index.php?func=detail&aid=1499814&group_id=7…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: Compiler error for tokenizer on Solaris
Bug #: 976241
<http://sourceforge.net/tracker/index.php?func=detail&aid=976241&group_id=75…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: token_iterator::at_end() result is inversed
Bug #: 1338326
<http://sourceforge.net/tracker/index.php?func=detail&aid=1338326&group_id=7…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: bug in char_separator
Bug #: 1510041
<http://sourceforge.net/tracker/index.php?func=detail&aid=1510041&group_id=7…>
Assignee: jmaurer <http://sourceforge.net/users/jmaurer/>
Summary: Diff in state of mersenne_twister gen between GCC3.41 & CW9
Bug #: 1115124
<http://sourceforge.net/tracker/index.php?func=detail&aid=1115124&group_id=7…>
Assignee: jmaurer <http://sourceforge.net/users/jmaurer/>
Summary: uniform_01 copies engine instead of using a reference
Bug #: 1464566
<http://sourceforge.net/tracker/index.php?func=detail&aid=1464566&group_id=7…>
Assignee: jmaurer <http://sourceforge.net/users/jmaurer/>
Summary: uniform_int<> with type's maximum availaible range error
Bug #: 1646394
<http://sourceforge.net/tracker/index.php?func=detail&aid=1646394&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: Adding boost::is_complex to type_traits.hpp
Bug #: 1315712
<http://sourceforge.net/tracker/index.php?func=detail&aid=1315712&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: Spelling of Edmonds-Karp-Algorithm
Bug #: 1226292
<http://sourceforge.net/tracker/index.php?func=detail&aid=1226292&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: Calling subgraph::global_to_local on a root graph
Bug #: 1444271
<http://sourceforge.net/tracker/index.php?func=detail&aid=1444271&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: strange compiling problem for transitive_closure
Bug #: 1489545
<http://sourceforge.net/tracker/index.php?func=detail&aid=1489545&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: concept_check.hpp unused variable warning
Bug #: 1636134
<http://sourceforge.net/tracker/index.php?func=detail&aid=1636134&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: remove_edge core dumps on self-circle
Bug #: 1641750
<http://sourceforge.net/tracker/index.php?func=detail&aid=1641750&group_id=7…>
Assignee: mclow <http://sourceforge.net/users/mclow/>
Summary: Solaris - once.cpp compile error
Bug #: 549162
<http://sourceforge.net/tracker/index.php?func=detail&aid=549162&group_id=75…>
Assignee: mistevens <http://sourceforge.net/users/mistevens/>
Summary: ublas: bug in mapped_vector_of_mapped_vector
Bug #: 1528178
<http://sourceforge.net/tracker/index.php?func=detail&aid=1528178&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: boost.range and 'const char[]'.
Bug #: 1272315
<http://sourceforge.net/tracker/index.php?func=detail&aid=1272315&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: [Boost.Range]boost::const_begin calls non-qualified 'begin'
Bug #: 1361686
<http://sourceforge.net/tracker/index.php?func=detail&aid=1361686&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: bug in boost::range_detail
Bug #: 1484477
<http://sourceforge.net/tracker/index.php?func=detail&aid=1484477&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: local_time_facet error in VS2005 Win2003
Bug #: 1551784
<http://sourceforge.net/tracker/index.php?func=detail&aid=1551784&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: The ptr_map iterator cannot be dereference to value type
Bug #: 1566672
<http://sourceforge.net/tracker/index.php?func=detail&aid=1566672&group_id=7…>
Assignee: nesotto <http://sourceforge.net/users/nesotto/>
Summary: boost::assignment documentation: mathematical 'typo'
Bug #: 1631893
<http://sourceforge.net/tracker/index.php?func=detail&aid=1631893&group_id=7…>
Assignee: nmusatti <http://sourceforge.net/users/nmusatti/>
Summary: Borland compiler error with Pool, boost::pool_allocator
Bug #: 988124
<http://sourceforge.net/tracker/index.php?func=detail&aid=988124&group_id=75…>
Assignee: nobody
Summary: Shmem serious bugs
Bug #: 1518563
<http://sourceforge.net/tracker/index.php?func=detail&aid=1518563&group_id=7…>
Assignee: nobody
Summary: Warnings on MSVC 2005
Bug #: 1596577
<http://sourceforge.net/tracker/index.php?func=detail&aid=1596577&group_id=7…>
Assignee: nobody
Summary: No zero-argument in_place()
Bug #: 1646100
<http://sourceforge.net/tracker/index.php?func=detail&aid=1646100&group_id=7…>
Assignee: pdimov <http://sourceforge.net/users/pdimov/>
Summary: gcc-4.2 atomicity.h location
Bug #: 1599422
<http://sourceforge.net/tracker/index.php?func=detail&aid=1599422&group_id=7…>
Assignee: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: format: assert when parsing invalid pattern
Bug #: 1326132
<http://sourceforge.net/tracker/index.php?func=detail&aid=1326132&group_id=7…>
Assignee: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: boost::format parse method doesn't work
Bug #: 1439607
<http://sourceforge.net/tracker/index.php?func=detail&aid=1439607&group_id=7…>
Assignee: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: 64 bit compile warning/error for boost::format
Bug #: 1451470
<http://sourceforge.net/tracker/index.php?func=detail&aid=1451470&group_id=7…>
Assignee: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: format zero length string msvc-8
Bug #: 1537844
<http://sourceforge.net/tracker/index.php?func=detail&aid=1537844&group_id=7…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: ct_gcd_lcm.hpp compilation error
Bug #: 558174
<http://sourceforge.net/tracker/index.php?func=detail&aid=558174&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: pool::purge_memory() does not reset next_size
Bug #: 984124
<http://sourceforge.net/tracker/index.php?func=detail&aid=984124&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: perfomance: memory cleanup for pool takes too long
Bug #: 995270
<http://sourceforge.net/tracker/index.php?func=detail&aid=995270&group_id=75…>
Assignee: shammah <http://sourceforge.net/users/shammah/>
Summary: boost::pool_allocator breaks with vector of vectors
Bug #: 1179641
<http://sourceforge.net/tracker/index.php?func=detail&aid=1179641&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: problem with boost::iostreams when compiled with Visual C++
Bug #: 1365752
<http://sourceforge.net/tracker/index.php?func=detail&aid=1365752&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: Changing size of memory-mapped file on Windows
Bug #: 1532684
<http://sourceforge.net/tracker/index.php?func=detail&aid=1532684&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: bug in iostreams/copy.hpp line 81
Bug #: 1610369
<http://sourceforge.net/tracker/index.php?func=detail&aid=1610369&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: iostreams::tee_filter is for output only
Bug #: 1612981
<http://sourceforge.net/tracker/index.php?func=detail&aid=1612981&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: Performance problem in iostreams
Bug #: 1643575
<http://sourceforge.net/tracker/index.php?func=detail&aid=1643575&group_id=7…>
Assignee: urzuga <http://sourceforge.net/users/urzuga/>
Summary: [boost::lambda] Compile error with libstdc++ debug mode
Bug #: 1444052
<http://sourceforge.net/tracker/index.php?func=detail&aid=1444052&group_id=7…>
Assignee: urzuga <http://sourceforge.net/users/urzuga/>
Summary: Lambda: (_1 + 'y')(string('x')) Doesn't Compile
Bug #: 1602075
<http://sourceforge.net/tracker/index.php?func=detail&aid=1602075&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: multitoken broken in program_options 1.33
Bug #: 1266877
<http://sourceforge.net/tracker/index.php?func=detail&aid=1266877&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Fixes for build on IBM pSeries for AIX and Linux
Bug #: 1446471
<http://sourceforge.net/tracker/index.php?func=detail&aid=1446471&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Boost Jam, and non english directorys
Bug #: 1480900
<http://sourceforge.net/tracker/index.php?func=detail&aid=1480900&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: program_options: format_paragraph assert fails on long line
Bug #: 1485069
<http://sourceforge.net/tracker/index.php?func=detail&aid=1485069&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: boost 1.33.1 build error
Bug #: 1487256
<http://sourceforge.net/tracker/index.php?func=detail&aid=1487256&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: [program_options] Endless loop with long default arguments
Bug #: 1528399
<http://sourceforge.net/tracker/index.php?func=detail&aid=1528399&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Parameter reversal in program_options documentation
Bug #: 1574213
<http://sourceforge.net/tracker/index.php?func=detail&aid=1574213&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Function name error in program_options documentation
Bug #: 1574751
<http://sourceforge.net/tracker/index.php?func=detail&aid=1574751&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: program_options find assert fails with multibyte characters
Bug #: 1594324
<http://sourceforge.net/tracker/index.php?func=detail&aid=1594324&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: [program_options] parse_config_file documentation bug
Bug #: 1632327
<http://sourceforge.net/tracker/index.php?func=detail&aid=1632327&group_id=7…>
--
-- Marshall
Marshall Clow Idio Software <mailto:marshall@idio.com>
It is by caffeine alone I set my mind in motion.
It is by the beans of Java that thoughts acquire speed,
the hands acquire shaking, the shaking becomes a warning.
It is by caffeine alone I set my mind in motion.
1
0
[ Unchanged from last Wednesday ]
Patch count: 16
3 vladimir_prus
2 rogeeff
2 agurtovoy
1 turkanis
1 pdimov
1 nobody
1 jsiek
1 johnmaddock
1 grafik
1 dlwalker
1 david_abrahams
1 anthonyw
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: Adjusts mpl::pair concept to be compatible with STL pairs
Bug #: 1489713
<http://sourceforge.net/tracker/index.php?func=detail&aid=1489713&group_id=7…>
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: [mpl] evc4 port
Bug #: 1583396
<http://sourceforge.net/tracker/index.php?func=detail&aid=1583396&group_id=7…>
Assignee: anthonyw <http://sourceforge.net/users/anthonyw/>
Summary: [thread] MSVS: Allow use of thread headers with /Za
Bug #: 1627420
<http://sourceforge.net/tracker/index.php?func=detail&aid=1627420&group_id=7…>
Assignee: david_abrahams <http://sourceforge.net/users/david_abrahams/>
Summary: new links in boost homepage:Meta-Comm,IRC
Bug #: 1612399
<http://sourceforge.net/tracker/index.php?func=detail&aid=1612399&group_id=7…>
Assignee: dlwalker <http://sourceforge.net/users/dlwalker/>
Summary: [integer] add support for integers longer than long
Bug #: 1507034
<http://sourceforge.net/tracker/index.php?func=detail&aid=1507034&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: bjam: always define OSPLAT
Bug #: 1619769
<http://sourceforge.net/tracker/index.php?func=detail&aid=1619769&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: [config] evc4 port
Bug #: 1489359
<http://sourceforge.net/tracker/index.php?func=detail&aid=1489359&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: [concept_check.hpp] remove unused variable warning in msvc
Bug #: 1388901
<http://sourceforge.net/tracker/index.php?func=detail&aid=1388901&group_id=7…>
Assignee: nobody
Summary: [archive] codecvt_null.hpp won't compile on QNX
Bug #: 1636855
<http://sourceforge.net/tracker/index.php?func=detail&aid=1636855&group_id=7…>
Assignee: pdimov <http://sourceforge.net/users/pdimov/>
Summary: support for weak_ptr binding
Bug #: 1633503
<http://sourceforge.net/tracker/index.php?func=detail&aid=1633503&group_id=7…>
Assignee: rogeeff <http://sourceforge.net/users/rogeeff/>
Summary: [test] no eh exception handling functions on evc4
Bug #: 1499418
<http://sourceforge.net/tracker/index.php?func=detail&aid=1499418&group_id=7…>
Assignee: rogeeff <http://sourceforge.net/users/rogeeff/>
Summary: [test] evc4 issue with SEH support
Bug #: 1583399
<http://sourceforge.net/tracker/index.php?func=detail&aid=1583399&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: iostreams // file_descriptor::seek BUG on files > 4 GB
Bug #: 1452698
<http://sourceforge.net/tracker/index.php?func=detail&aid=1452698&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: [program_options] static const variable on evc4
Bug #: 1499420
<http://sourceforge.net/tracker/index.php?func=detail&aid=1499420&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: [program_options] putenv on Solaris
Bug #: 1568191
<http://sourceforge.net/tracker/index.php?func=detail&aid=1568191&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: VC80-Compatible String Processing in format_paragraph()
Bug #: 1580068
<http://sourceforge.net/tracker/index.php?func=detail&aid=1580068&group_id=7…>
--
-- Marshall
Marshall Clow Idio Software <mailto:marshall@idio.com>
It is by caffeine alone I set my mind in motion.
It is by the beans of Java that thoughts acquire speed,
the hands acquire shaking, the shaking becomes a warning.
It is by caffeine alone I set my mind in motion.
1
0
[ Unchanged from last Wednesday ]
Support count: 38
9 grafik
5 vladimir_prus
4 johnmaddock
3 nobody
3 jsiek
3 jbandela
2 turkanis
2 az_sw_dude
1 urzuga
1 samuel_k
1 rogeeff
1 hkaiser
1 fcacciola
1 djowel
1 agurtovoy
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: duplicat initial members -> erase_key postcond. fail
Bug #: 1642614
<http://sourceforge.net/tracker/index.php?func=detail&aid=1642614&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: support new 2007 DST rules for timezone db
Bug #: 1471723
<http://sourceforge.net/tracker/index.php?func=detail&aid=1471723&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: new timezone db file for #1471723 - 2007 DST support
Bug #: 1478619
<http://sourceforge.net/tracker/index.php?func=detail&aid=1478619&group_id=7…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: Embedded python won't compile
Bug #: 1391956
<http://sourceforge.net/tracker/index.php?func=detail&aid=1391956&group_id=7…>
Assignee: fcacciola <http://sourceforge.net/users/fcacciola/>
Summary: boost::optional<enum> fails with /CLR
Bug #: 973424
<http://sourceforge.net/tracker/index.php?func=detail&aid=973424&group_id=75…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Jam Fails to Build
Bug #: 954048
<http://sourceforge.net/tracker/index.php?func=detail&aid=954048&group_id=75…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Boost on opteron AMD
Bug #: 1200700
<http://sourceforge.net/tracker/index.php?func=detail&aid=1200700&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Linker Problems with VC .NET 2003 / STLPort / Boost
Bug #: 1292345
<http://sourceforge.net/tracker/index.php?func=detail&aid=1292345&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Unable to build boost with Dinkumware STL version 4.02
Bug #: 1336312
<http://sourceforge.net/tracker/index.php?func=detail&aid=1336312&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Compiling only needed version
Bug #: 1377001
<http://sourceforge.net/tracker/index.php?func=detail&aid=1377001&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Building universal binary on MacOSX
Bug #: 1409774
<http://sourceforge.net/tracker/index.php?func=detail&aid=1409774&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Cross compiling boost for Windows CE (ARM) from VS2005
Bug #: 1457763
<http://sourceforge.net/tracker/index.php?func=detail&aid=1457763&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: libraries won't build
Bug #: 1524001
<http://sourceforge.net/tracker/index.php?func=detail&aid=1524001&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Having some trouble building boost
Bug #: 1534701
<http://sourceforge.net/tracker/index.php?func=detail&aid=1534701&group_id=7…>
Assignee: hkaiser <http://sourceforge.net/users/hkaiser/>
Summary: compiler is out of heap space in pass 2
Bug #: 1481122
<http://sourceforge.net/tracker/index.php?func=detail&aid=1481122&group_id=7…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: Problem compiling :/
Bug #: 942349
<http://sourceforge.net/tracker/index.php?func=detail&aid=942349&group_id=75…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: SLOOOWW tokenizer compilation on VC++6.0
Bug #: 969590
<http://sourceforge.net/tracker/index.php?func=detail&aid=969590&group_id=75…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: Visual C++ 'Language Extensions' support
Bug #: 1039338
<http://sourceforge.net/tracker/index.php?func=detail&aid=1039338&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: Regex
Bug #: 1156957
<http://sourceforge.net/tracker/index.php?func=detail&aid=1156957&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: Problem running configure for unsupported platform
Bug #: 1339778
<http://sourceforge.net/tracker/index.php?func=detail&aid=1339778&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: regex - perl syntax affects what gets matched
Bug #: 1519824
<http://sourceforge.net/tracker/index.php?func=detail&aid=1519824&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: Crash on RH machine with gcc < 3.4
Bug #: 1635211
<http://sourceforge.net/tracker/index.php?func=detail&aid=1635211&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: Boost with Dinkumware C++ Library !?
Bug #: 531963
<http://sourceforge.net/tracker/index.php?func=detail&aid=531963&group_id=75…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: creating my own properties
Bug #: 619615
<http://sourceforge.net/tracker/index.php?func=detail&aid=619615&group_id=75…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: Max Flow Algorithm
Bug #: 1445526
<http://sourceforge.net/tracker/index.php?func=detail&aid=1445526&group_id=7…>
Assignee: nobody
Summary: Having problems with building boost
Bug #: 1545941
<http://sourceforge.net/tracker/index.php?func=detail&aid=1545941&group_id=7…>
Assignee: nobody
Summary: Building Boost with Open Watcom Compiler
Bug #: 1547257
<http://sourceforge.net/tracker/index.php?func=detail&aid=1547257&group_id=7…>
Assignee: nobody
Summary: memory pattern question
Bug #: 1634278
<http://sourceforge.net/tracker/index.php?func=detail&aid=1634278&group_id=7…>
Assignee: rogeeff <http://sourceforge.net/users/rogeeff/>
Summary: failing on 6 targets in MacOS X
Bug #: 1572712
<http://sourceforge.net/tracker/index.php?func=detail&aid=1572712&group_id=7…>
Assignee: samuel_k <http://sourceforge.net/users/samuel_k/>
Summary: Boost.Format doesn't work on MSVC with /vd2 compiler option
Bug #: 1545133
<http://sourceforge.net/tracker/index.php?func=detail&aid=1545133&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: Boost.Iostreams and newline translation
Bug #: 1299123
<http://sourceforge.net/tracker/index.php?func=detail&aid=1299123&group_id=7…>
Assignee: turkanis <http://sourceforge.net/users/turkanis/>
Summary: boost.iostreams file_descriptor and sharing
Bug #: 1445474
<http://sourceforge.net/tracker/index.php?func=detail&aid=1445474&group_id=7…>
Assignee: urzuga <http://sourceforge.net/users/urzuga/>
Summary: lambda vs pure virtual functions
Bug #: 1231445
<http://sourceforge.net/tracker/index.php?func=detail&aid=1231445&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: program_options Can one have options with optional values?
Bug #: 1102652
<http://sourceforge.net/tracker/index.php?func=detail&aid=1102652&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: program_options Can one have options with optional values?
Bug #: 1102664
<http://sourceforge.net/tracker/index.php?func=detail&aid=1102664&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: program_options bug?
Bug #: 1114084
<http://sourceforge.net/tracker/index.php?func=detail&aid=1114084&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Boost.Build v2 build script help for evc4
Bug #: 1498919
<http://sourceforge.net/tracker/index.php?func=detail&aid=1498919&group_id=7…>
Assignee: vladimir_prus <http://sourceforge.net/users/vladimir_prus/>
Summary: Bjam build should support attachment of individual build ids
Bug #: 1530168
<http://sourceforge.net/tracker/index.php?func=detail&aid=1530168&group_id=7…>
--
-- Marshall
Marshall Clow Idio Software <mailto:marshall@idio.com>
It is by caffeine alone I set my mind in motion.
It is by the beans of Java that thoughts acquire speed,
the hands acquire shaking, the shaking becomes a warning.
It is by caffeine alone I set my mind in motion.
1
0
Bugs item #1647261, was opened at 2007-01-29 08:47
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1647261&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: date_time
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Jeff Garland (az_sw_dude)
Summary: Daylight Saving Time
Initial Comment:
In boost-1_33_1\BOOST\date_time\local_timezone_defs.hpp's struct us_dst_trait there is logic for determining the begin and end date of daylight saving time. It needs to be changed for 2007 since it is now the second Sunday in March thru the first Sunday in November.
I couldn't see where this issue was addressed.
alex.hajdu(a)thomson.com
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1647261&group_…
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-bugs mailing list
Boost-bugs(a)lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/boost-bugs
1
0
I've checked in the attached (HEAD and RC). The failure in question was reported a
couple of times, and nothing happens, which means we get to
release 1.34.0 with it.
- Volodya
3
4
Looks to me like we're almost there, even if it doesn't look like it yet :-)
Date-Time:
~~~~~~~~~~
Serialisation lib fails to build with Borland-5.8.2: this works or me when
building against spirit-1.6.3. The error messages in the table correspond
to what I see when building against CVS spirit (which is known not to work).
Since Borland can't possibly work with mainline Spirit, I have:
using borland : 5.8.2 : "C:/Program Files/Borland/BDS/4.0/Bin/bcc32.exe" :
<cxxflags>-IC:/data/boost/spirit-1.6.3/boost ;
using borland : 5.6.4 : "C:/cpp/Borland/CBuilder6/Bin/bcc32.exe" :
<cxxflags>-IC:/data/boost/spirit-1.6.3/boost ;
In my user-config.jam which takes care of serialisation at least.
Dynamic Bitset:
~~~~~~~~~~~~~~~
Strange looking failure from one regression runner, but not the other.
Spurious?
MultiIndex:
~~~~~~~~~~~
Spirit setup issue again.
Regex:
~~~~~~
These all pass for me here. The msvc-8 failure is only showing up on one
machine and the link leads to no error messages. The Borland failures all
suggest that the library failed to build, but there are no error messages
and since all the other tests pass there is something strange going on here
(as the library must have built!). Spurious?
Serialisation:
~~~~~~~~~~~~~~
Spirit setup again.
Test:
~~~~~
These all pass for me, but I see an "asynch-exceptions-on" in the test name,
does this mean this is a non-default build?
Wave:
~~~~~
We need a Tru64 expert to look at this: linker bug maybe?
John.
4
7
Roland and Nicola have being discussing the situation with serialization/spirit
interaction with not-so-comforming compilers like borland and msvc-6.5.
The conclusion as I understand it seems to be:
1. It's possible to make serialization work, by taking previous release of
Spirit 1.6, removing Spirit from Boost RC and unpacking older release on
top of the tree.
2. The 'out-of-tree' spirit 1.6 does not seem to work, for several
reasons:
- There's no V2 mechanism to plug out-of-tree spirit 1.6. Both
Roland and Nicola have patches to fix this.
- For borland, it requires patching Spirit 1.6 to change
include statements from ""-includes to <>-includes.
We don't have any regression results with the patches spirit.
As Alisdair mentions, it would be bad to just drop serialization support
for msvc and borland. At the same time, we don't have any idea
if spirit 1.6 is the only problem with those compilers, so I think
here's what we should do:
1. Nicola sends Roland and me his patched spirit.
2. Roland sets up regression tests that use the
patched spirit 1.6. He changes the name of toolsets
to indicate that patched spriit is used, say:
msvc-6.5_spirit1.6
and does a test run.
3. If results are good enough, or can be
made good enough in reasonable time, we make this
patched spirit available from SF -- it can be either new
release of the spirit project, or new download from the
boost project with prominent warning that it's just
for msvc-6.5 and borland users.
4. We also mark serialization library as unusable for
msvc-6.5 and borland, and include a link for
the procedure to download spirit 1.6 and set it up.
This way, we correctly indicate that serialization does not work
in RC download, say how it can be made to work, and have
some test coverage for RC + spirit 1.6.
In case if RC + spirit 1.6 has serious problems for msvc/borland,
and there's nobody to fix those problems, we'll declare serialization
unusable for the problematic toolsets.
Now, two questions.
1. Does the above sounds good to everybody involved? Robert? Nicola? Roland?
2. If yes, Nicola and Roland, can you work on this plan?
Thanks,
Volodya
5
11