Boost
Threads by month
- ----- 2026 -----
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- 33 participants
- 33328 discussions
> - I had to modify <boost/units/system/si/base.hpp> to include
> <boost/units/io.hpp>, otherwise the compiler claimed syntax errors for
> all of the specializations of the unit_info class.
Good point; I'll fix this.
> - Compile times even for a relatively small sample were rather large,
> but this is understandable.
Yeah, compile time is a bear. On the other hand, I haven't gone
through the
MPL code with a fine-toothed comb yet, so it might be possible to
make some
improvements there. In any case, for most projects, you would just
throw the
quantities you want into a precompiled header file, so it should
really only be
a one-time cost...
> - unit_info specializations for the CGS system typedef'd base_type as
> SI::system, not CGS::system. Is this a bug? This typedef is also
> omitted in the docs, so I'm not even sure it's necessary.
The quantity conversion code has seen more change than anything else
since
v0.5.6 - base_type is no longer necessary as I no longer assume that
conversions
between two unit systems have to be mediated by a base system.
Instead, as
you can see in <boost/units/systems/si/convert_si_to_cgs.hpp>, you
simply
provide a template specialization for the base_unit_converter class
for each
fundamental unit. This marginally increases the typing involved in
implementing
unit system conversions, but significantly increases the
flexibility... I have removed
the unnecessary base_type declarations for the next version.
> So far my sample program makes two new units, nautical miles and feet.
> Nautical miles resides in SIext::system, feet resides in
> imperial::system. It then defines a radar struct that stores a range
> in nautical miles, and a ceiling in feet, as well as a location in UTM
> coordinates as meters. There is one function in_range that takes in a
> UTM coordinate and says whether or not it's in range of the given
> radar system.
Cool - this sounds like a much more interesting application than most
of the
largely SI stuff that I use it for...
> One issue that using feet brought up was how to correctly specialize
> the unit_info struct for the unit name string when the name changes in
> plural form. Could you provide a plural() function that does nothing
> but forward to name() if it's not over-ridden? e.g.
>
> template <>
> struct unit_info<imperial::system, length_tag>
> {
> typedef imperial::system base_type;
> static string name() { return "foot"; }
> static string plural() { return "feet"; }
> static string symbol() { return "ft"; }
> };
I guess it would not be a problem in principle to do this. Since the
current IO
doesn't use the full name anyway, you could just add plural() and
have it work.
The only downside I can see to adding this to the library (assuming I
can figure
out how to get an ostream manipulator to enable the choice of full
unit names
or abbreviations) is that operator<< would have to compare value()
against Y(1).
Another potential issue is this:
What should you call 1 lb. ft.? I'd say one foot pound. How about 2
lb. ft? I'd say
two foot pounds. But it could equally reasonably be called two pound
feet - it's
just a convention. With more involved composite units, these issues
become
progressively messier, which is one of the reasons why I've tried as
much as
possible to avoid the morass of IO...
> minor nit. Just in implementing this small program I was warned by
> the compiler of comparing feet to meters multiple times (comparing
> altitudes). I will try to clean up the code and send it to you if you
> are interested. I would also be interested if I used your library's
> facilities correctly.
I'd be very interested to see what you've done with it and to get
your overall
impression on the documentation and ease of use.
Thanks,
Matthias
----------------------------------------------------------------
Matthias Schabel, Ph.D.
Assistant Professor, Department of Radiology
Utah Center for Advanced Imaging Research
729 Arapeen Drive
Salt Lake City, UT 84108
801-587-9413 (work)
801-585-3592 (fax)
801-706-5760 (cell)
801-484-0811 (home)
matthias dot schabel at hsc dot utah dot edu
----------------------------------------------------------------
3
3
Perhaps this already exists and I just haven't found it; if not, I
would like to propose that
a new area in the Boost Vault be set up for libraries that have been
submitted for formal
review. I think this would make it significantly easier to find
libraries that will be coming
up for review and give them a spin.
Just a thought -
Matthias
----------------------------------------------------------------
Matthias Schabel, Ph.D.
Assistant Professor, Department of Radiology
Utah Center for Advanced Imaging Research
729 Arapeen Drive
Salt Lake City, UT 84108
801-587-9413 (work)
801-585-3592 (fax)
801-706-5760 (cell)
801-484-0811 (home)
matthias dot schabel at hsc dot utah dot edu
----------------------------------------------------------------
1
0
>> The design is complex, but not needlessly so. Take the "pass an array to
>> a function" design, and think about how you might answer the following
>> questions:
>> - What if you wanted the function to calculate 5 different statistics,
>> specified by you, and you want to call the function once, not 5 times.
>> - What if some of those statistics shared some intermediate partial
>> results? You would want the function to only calculate them once, right?
Yes, I see your point. Maybe you could show and compare the two styles
and where each is appropriate in the "getting started" portion
of the documentation.
John Maddock's statistic's library, which is also
in the "review queue" presumably will have some overlap with the
"accumulators"
statistics library. Do you see this as an issue that would need to be
addressed.
How familiar are you with John's library? I wonder what the result would
be if
two of boost's best statisticians/mathmaticians got
together on a design (one can only dream).
I'm also interested your "data-series" library. I download it a few weeks
ago,
but it had some dependencies on libraries not currently in the boost
distribution and
I was unable to compile it. I did quickly read the documentation however
and it
looks to be built upon some of the same concepts of "accumulators" library.
I suspect that the idea behind the two libraries (accumulators and
data-series)
evolved together, given their similar characteristics of how they
handle intermediate values. (5 day-moving average of a 10-day moving
average kind-of stuff). I have a background in data-series analysis
and I'll make an effort to contribute in a more meaningful way when
that one comes up for review.
3
2
The review for the accumulators library ends this evening. If you
have anything left to share on this topic, please post it soon. This is
especially true if you feel there are problems with the library, since
every reviewer so far who has expressed an opinion has voted for inclusion.
John (Review manager)
1
0
Boost Regression test failures
Report time: 2007-02-07T12:21:44Z
This report lists all regression test failures on release platforms.
Detailed report:
http://engineering.meta-comm.com/boost-regression/CVS-RC_1_34_0/developer/i…
The following platforms have a large number of failures:
borland-5.8.2
intel-linux-9.0
msvc-7.1_stlport4
1341 failures in 43 libraries (48 are from non-broken platforms)
algorithm/string (0 of 1 failures are from non-broken platforms)
any (0 of 1 failures are from non-broken platforms)
config (1 of 3 failures are from non-broken platforms)
conversion (0 of 1 failures are from non-broken platforms)
crc (0 of 1 failures are from non-broken platforms)
date_time (0 of 67 failures are from non-broken platforms)
disjoint_sets (0 of 1 failures are from non-broken platforms)
dynamic_bitset (0 of 4 failures are from non-broken platforms)
filesystem (0 of 10 failures are from non-broken platforms)
format (0 of 5 failures are from non-broken platforms)
function (8 of 10 failures are from non-broken platforms)
functional/hash (0 of 1 failures are from non-broken platforms)
graph (0 of 4 failures are from non-broken platforms)
integer (0 of 1 failures are from non-broken platforms)
io (1 of 2 failures are from non-broken platforms)
iostreams (0 of 4 failures are from non-broken platforms)
iterator (1 of 2 failures are from non-broken platforms)
math (0 of 2 failures are from non-broken platforms)
multi_index (0 of 2 failures are from non-broken platforms)
numeric/conversion (2)
numeric/interval (0 of 8 failures are from non-broken platforms)
numeric/ublas (0 of 8 failures are from non-broken platforms)
parameter (0 of 2 failures are from non-broken platforms)
pool (1 of 2 failures are from non-broken platforms)
program_options (0 of 35 failures are from non-broken platforms)
ptr_container (0 of 2 failures are from non-broken platforms)
python (0 of 125 failures are from non-broken platforms)
random (2)
range (0 of 1 failures are from non-broken platforms)
regex (2 of 71 failures are from non-broken platforms)
serialization (0 of 847 failures are from non-broken platforms)
signals (1 of 6 failures are from non-broken platforms)
spirit (0 of 10 failures are from non-broken platforms)
statechart (4 of 6 failures are from non-broken platforms)
static_assert (1)
test (14 of 27 failures are from non-broken platforms)
thread (0 of 7 failures are from non-broken platforms)
tokenizer (0 of 1 failures are from non-broken platforms)
tuple (0 of 2 failures are from non-broken platforms)
type_traits (8 of 9 failures are from non-broken platforms)
utility (1 of 6 failures are from non-broken platforms)
wave (1 of 8 failures are from non-broken platforms)
xpressive (0 of 31 failures are from non-broken platforms)
Test failures marked with a (*) represent tests that failed on
platforms that are considered broken. They are likely caused by
misconfiguration by the regression tester or a failure in a core
library such as Test or Config.
|algorithm/string|
regex: intel-linux-9.0*
|any|
any_to_ref_test: borland-5.8.2*
|config|
config_link_test: intel-linux-9.0*
config_test: msvc-7.1_stlport4*
limits_test: msvc-6.5_stlport4
|conversion|
lexical_cast_test: msvc-7.1_stlport4*
|crc|
crc_test: borland-5.8.2*
|date_time|
testc_local_adjustor: msvc-7.1_stlport4*
testclock: msvc-7.1_stlport4*
testclocks: msvc-7.1_stlport4*
testdate: msvc-7.1_stlport4*
testdate_dll: intel-linux-9.0* msvc-7.1_stlport4*
testdate_duration_dll: intel-linux-9.0* msvc-7.1_stlport4*
testdate_facet_new: msvc-7.1_stlport4*
testdate_facet_new_dll: intel-linux-9.0* msvc-7.1_stlport4*
testdate_input_facet: msvc-7.1_stlport4*
testdate_input_facet_dll: intel-linux-9.0* msvc-7.1_stlport4*
testdate_iterator: msvc-7.1_stlport4*
testdate_iterator_dll: intel-linux-9.0* msvc-7.1_stlport4*
testfacet: msvc-7.1_stlport4*
testfacet_dll: intel-linux-9.0* msvc-7.1_stlport4*
testformatters: msvc-7.1_stlport4*
testformatters_dll: intel-linux-9.0* msvc-7.1_stlport4*
testgenerators: msvc-7.1_stlport4*
testgenerators_dll: intel-linux-9.0* msvc-7.1_stlport4*
testgreg_cal_dll: intel-linux-9.0* msvc-7.1_stlport4*
testgreg_day_dll: intel-linux-9.0* msvc-7.1_stlport4*
testgreg_durations_dll: intel-linux-9.0* msvc-7.1_stlport4*
testgreg_month: msvc-7.1_stlport4*
testgreg_month_dll: intel-linux-9.0* msvc-7.1_stlport4*
testgreg_serialize: intel-linux-9.0* msvc-7.1_stlport4*
testgreg_serialize_dll: intel-linux-9.0* msvc-7.1_stlport4*
testgreg_serialize_xml: intel-linux-9.0* msvc-7.1_stlport4*
testgreg_year_dll: intel-linux-9.0* msvc-7.1_stlport4*
testiterator: msvc-7.1_stlport4*
testlocal_adjustor: msvc-7.1_stlport4*
testlocal_time_facet: msvc-7.1_stlport4*
testlocal_time_input_facet: msvc-7.1_stlport4*
testmicrosec_time_clock: msvc-7.1_stlport4*
testparse_date: msvc-7.1_stlport4*
testparse_time: msvc-7.1_stlport4*
testperiod: msvc-7.1_stlport4*
testperiod_dll: intel-linux-9.0* msvc-7.1_stlport4*
teststreams: msvc-7.1_stlport4*
testtime: msvc-7.1_stlport4*
testtime_formatters: msvc-7.1_stlport4*
testtime_period: msvc-7.1_stlport4*
testtime_serialize: intel-linux-9.0* msvc-7.1_stlport4*
testtime_serialize_std_config: intel-linux-9.0* msvc-7.1_stlport4*
testtime_serialize_xml: intel-linux-9.0* msvc-7.1_stlport4*
testtime_serialize_xml_std_config: intel-linux-9.0* msvc-7.1_stlport4*
testwcustom_time_zone: msvc-7.1_stlport4*
testwposix_time_zone: msvc-7.1_stlport4*
|disjoint_sets|
disjoint_set_test: borland-5.8.2*
|dynamic_bitset|
dyn_bitset_unit_tests1: msvc-7.1_stlport4*
dyn_bitset_unit_tests2: borland-5.8.2* borland-5.8.2*
dyn_bitset_unit_tests4: msvc-7.1_stlport4*
|filesystem|
convenience_test: msvc-7.1_stlport4*
fstream_test: msvc-7.1_stlport4*
large_file_support_test: msvc-7.1_stlport4*
operations_test: msvc-7.1_stlport4*
operations_test_dll: intel-linux-9.0* msvc-7.1_stlport4*
path_test: msvc-7.1_stlport4*
path_test_dll: intel-linux-9.0* msvc-7.1_stlport4*
wide_test: msvc-7.1_stlport4*
|format|
format_test1: borland-5.8.2*
format_test2: borland-5.8.2*
format_test3: borland-5.8.2*
format_test_wstring: borland-5.8.2* msvc-7.1_stlport4*
|function|
allocator_test: borland-5.8.2* msvc-6.5_stlport4
function_arith_cxx98: msvc-6.5_stlport4
function_ref_cxx98: msvc-6.5_stlport4
lambda_test: msvc-6.5_stlport4
lib_function_test: msvc-6.5_stlport4
mem_fun_cxx98: msvc-6.5_stlport4
stateless_test: borland-5.8.2*
std_bind_cxx98: msvc-6.5_stlport4
sum_avg_cxx98: msvc-6.5_stlport4
|functional/hash|
hash_string_test: msvc-7.1_stlport4*
|graph|
graphviz_test: intel-linux-9.0* msvc-7.1_stlport4*
serialize: intel-linux-9.0* msvc-7.1_stlport4*
|integer|
integer_traits_test: borland-5.8.2*
|io|
ios_state_test: borland-5.8.2* msvc-6.5_stlport4
|iostreams|
bzip2_test: intel-linux-9.0*
gzip_test: intel-linux-9.0*
regex_filter_test: intel-linux-9.0*
zlib_test: intel-linux-9.0*
|iterator|
counting_iterator_test: msvc-7.1_stlport4*
zip_iterator_test: msvc-6.5_stlport4
|math|
common_factor_test: msvc-7.1_stlport4*
special_functions_test: msvc-7.1_stlport4*
|multi_index|
test_serialization: intel-linux-9.0* msvc-7.1_stlport4*
|numeric/conversion|
converter_test: msvc-6.5_stlport4
udt_support_test: msvc-6.5_stlport4
|numeric/interval|
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*
test_float: borland-5.8.2* msvc-7.1_stlport4*
|numeric/ublas|
concepts: msvc-7.1_stlport4*
placement_new: msvc-7.1_stlport4*
test1: msvc-7.1_stlport4*
test2: msvc-7.1_stlport4*
test3: msvc-7.1_stlport4*
test4: msvc-7.1_stlport4*
test5: msvc-7.1_stlport4*
test6: msvc-7.1_stlport4*
|parameter|
python_test: intel-linux-9.0* msvc-7.1_stlport4*
|pool|
test_pool_alloc: borland-5.8.2* msvc-6.5_stlport4
|program_options|
cmdline_test: borland-5.8.2* msvc-7.1_stlport4*
cmdline_test_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
options_description_test: borland-5.8.2* msvc-7.1_stlport4*
options_description_test_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
parsers_test: borland-5.8.2* msvc-7.1_stlport4*
parsers_test_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
positional_options_test: borland-5.8.2* msvc-7.1_stlport4*
positional_options_test_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
unicode_test: borland-5.8.2* msvc-7.1_stlport4*
unicode_test_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
variable_map_test: borland-5.8.2* msvc-7.1_stlport4*
variable_map_test_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
winmain: borland-5.8.2* msvc-7.1_stlport4*
winmain_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
|ptr_container|
serialization: intel-linux-9.0* msvc-7.1_stlport4*
|python|
andreas_beyer: intel-linux-9.0* msvc-7.1_stlport4*
args: intel-linux-9.0* msvc-7.1_stlport4*
auto_ptr: intel-linux-9.0* msvc-7.1_stlport4*
back_reference: intel-linux-9.0* msvc-7.1_stlport4*
bases: intel-linux-9.0* msvc-7.1_stlport4*
ben_scott1: intel-linux-9.0* msvc-7.1_stlport4*
bienstman1: intel-linux-9.0* msvc-7.1_stlport4*
bienstman2: intel-linux-9.0* msvc-7.1_stlport4*
bienstman3: intel-linux-9.0* msvc-7.1_stlport4*
builtin_converters: intel-linux-9.0* msvc-7.1_stlport4*
callbacks: intel-linux-9.0* msvc-7.1_stlport4*
const_argument: intel-linux-9.0* msvc-7.1_stlport4*
crossmod_exception: intel-linux-9.0* msvc-7.1_stlport4*
crossmod_opaque: intel-linux-9.0* msvc-7.1_stlport4*
data_members: intel-linux-9.0* msvc-7.1_stlport4*
defaults: intel-linux-9.0* msvc-7.1_stlport4*
dict: intel-linux-9.0* msvc-7.1_stlport4*
docstring: intel-linux-9.0* msvc-7.1_stlport4*
enum: intel-linux-9.0* msvc-7.1_stlport4*
exception_translator: intel-linux-9.0* msvc-7.1_stlport4*
exec: msvc-7.1_stlport4*
extract: intel-linux-9.0* msvc-7.1_stlport4*
implicit: intel-linux-9.0* msvc-7.1_stlport4*
injected: intel-linux-9.0* msvc-7.1_stlport4*
iterator: intel-linux-9.0* msvc-7.1_stlport4*
keywords: intel-linux-9.0* msvc-7.1_stlport4*
list: intel-linux-9.0* msvc-7.1_stlport4*
long: intel-linux-9.0* msvc-7.1_stlport4*
map_indexing_suite: intel-linux-9.0* msvc-7.1_stlport4*
minimal: intel-linux-9.0* msvc-7.1_stlport4*
multi_arg_constructor: intel-linux-9.0* msvc-7.1_stlport4*
nested: intel-linux-9.0* msvc-7.1_stlport4*
numpy: intel-linux-9.0* msvc-7.1_stlport4*
object: intel-linux-9.0* msvc-7.1_stlport4*
opaque: intel-linux-9.0* msvc-7.1_stlport4*
operators: intel-linux-9.0* msvc-7.1_stlport4*
pearu1: intel-linux-9.0* msvc-7.1_stlport4*
pickle1: intel-linux-9.0* msvc-7.1_stlport4*
pickle2: intel-linux-9.0* msvc-7.1_stlport4*
pickle3: intel-linux-9.0* msvc-7.1_stlport4*
pickle4: intel-linux-9.0* msvc-7.1_stlport4*
pointee: intel-linux-9.0* msvc-7.1_stlport4*
pointer_type_id_test: intel-linux-9.0* msvc-7.1_stlport4*
pointer_vector: intel-linux-9.0* msvc-7.1_stlport4*
polymorphism: intel-linux-9.0* msvc-7.1_stlport4*
polymorphism2: intel-linux-9.0* msvc-7.1_stlport4*
polymorphism2_auto_ptr: intel-linux-9.0* msvc-7.1_stlport4*
properties: intel-linux-9.0* msvc-7.1_stlport4*
raw_ctor: intel-linux-9.0* msvc-7.1_stlport4*
return_arg: intel-linux-9.0* msvc-7.1_stlport4*
shared_ptr: intel-linux-9.0* msvc-7.1_stlport4*
slice: intel-linux-9.0* msvc-7.1_stlport4*
staticmethod: intel-linux-9.0* msvc-7.1_stlport4*
stl_iterator: intel-linux-9.0* msvc-7.1_stlport4*
str: intel-linux-9.0* msvc-7.1_stlport4*
test_pointer_adoption: intel-linux-9.0* msvc-7.1_stlport4*
try: intel-linux-9.0* msvc-7.1_stlport4*
tuple: intel-linux-9.0* msvc-7.1_stlport4*
upcast: intel-linux-9.0* msvc-7.1_stlport4*
vector_indexing_suite: intel-linux-9.0* msvc-7.1_stlport4*
virtual_functions: intel-linux-9.0* msvc-7.1_stlport4*
voidptr: intel-linux-9.0* msvc-7.1_stlport4*
wrapper_held_type: intel-linux-9.0* msvc-7.1_stlport4*
|random|
random_demo: msvc-6.5_stlport4
random_test: msvc-6.5_stlport4
|range|
string: msvc-7.1_stlport4*
|regex|
bad_expression_test: intel-linux-9.0* msvc-7.1_stlport4*
captures_example: intel-linux-9.0* msvc-7.1_stlport4*
captures_test: intel-linux-9.0* msvc-7.1_stlport4*
credit_card_example: intel-linux-9.0* msvc-7.1_stlport4*
icu_example: intel-linux-9.0* msvc-7.1_stlport4*
mfc_example: intel-linux-9.0* msvc-7.1_stlport4*
object_cache_test: intel-linux-9.0* msvc-7.1_stlport4*
partial_regex_grep: intel-linux-9.0* msvc-7.1_stlport4*
partial_regex_match: intel-linux-9.0* msvc-7.1_stlport4*
posix_api_check: intel-linux-9.0* msvc-7.1_stlport4*
posix_api_check_cpp: intel-linux-9.0* msvc-7.1_stlport4*
recursion_test: intel-linux-9.0* msvc-7.1_stlport4*
regex_dll_config_info: intel-linux-9.0* msvc-7.1_stlport4*
regex_grep_example_1: intel-linux-9.0* msvc-7.1_stlport4*
regex_grep_example_2: intel-linux-9.0* msvc-7.1_stlport4*
regex_grep_example_3: intel-linux-9.0* msvc-7.1_stlport4*
regex_grep_example_4: intel-linux-9.0* msvc-7.1_stlport4*
regex_iterator_example: intel-linux-9.0* msvc-7.1_stlport4*
regex_match_example: intel-linux-9.0* msvc-7.1_stlport4*
regex_merge_example: intel-linux-9.0* msvc-7.1_stlport4*
regex_regress: msvc-7.1_stlport4*
regex_regress_dll: intel-linux-9.0* msvc-7.1_stlport4*
regex_regress_threaded: intel-linux-9.0* msvc-7.1_stlport4* msvc-8.0 msvc-8.0
regex_replace_example: intel-linux-9.0* msvc-7.1_stlport4*
regex_search_example: intel-linux-9.0* msvc-7.1_stlport4*
regex_split_example_1: intel-linux-9.0* msvc-7.1_stlport4*
regex_split_example_2: intel-linux-9.0* msvc-7.1_stlport4*
regex_timer: intel-linux-9.0* msvc-7.1_stlport4*
regex_token_iterator_eg_1: intel-linux-9.0* msvc-7.1_stlport4*
regex_token_iterator_eg_2: intel-linux-9.0* msvc-7.1_stlport4*
static_mutex_test: intel-linux-9.0* msvc-7.1_stlport4*
test_collate_info: intel-linux-9.0* msvc-7.1_stlport4*
test_grep: intel-linux-9.0* msvc-7.1_stlport4*
unicode_iterator_test: intel-linux-9.0* msvc-7.1_stlport4*
wide_posix_api_check_cpp: intel-linux-9.0* msvc-7.1_stlport4*
|serialization|
test_array_binary_archive: borland-5.8.2*
test_array_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_array_text_archive: borland-5.8.2*
test_array_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_array_text_warchive: borland-5.8.2*
test_array_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_array_xml_archive: borland-5.8.2*
test_array_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_array_xml_warchive: borland-5.8.2*
test_array_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_binary_binary_archive: borland-5.8.2*
test_binary_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_binary_text_archive: borland-5.8.2*
test_binary_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_binary_text_warchive: borland-5.8.2*
test_binary_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_binary_xml_archive: borland-5.8.2*
test_binary_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_binary_xml_warchive: borland-5.8.2*
test_binary_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_class_info_load_binary_archive: borland-5.8.2*
test_class_info_load_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_class_info_load_text_archive: borland-5.8.2*
test_class_info_load_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_class_info_load_text_warchive: borland-5.8.2*
test_class_info_load_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_class_info_load_xml_archive: borland-5.8.2*
test_class_info_load_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_class_info_load_xml_warchive: borland-5.8.2*
test_class_info_load_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_class_info_save_binary_archive: borland-5.8.2*
test_class_info_save_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_class_info_save_text_archive: borland-5.8.2*
test_class_info_save_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_class_info_save_text_warchive: borland-5.8.2*
test_class_info_save_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_class_info_save_xml_archive: borland-5.8.2*
test_class_info_save_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_class_info_save_xml_warchive: borland-5.8.2*
test_class_info_save_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_codecvt_null: borland-5.8.2*
test_contained_class_binary_archive: borland-5.8.2*
test_contained_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_contained_class_text_archive: borland-5.8.2*
test_contained_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_contained_class_text_warchive: borland-5.8.2*
test_contained_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_contained_class_xml_archive: borland-5.8.2*
test_contained_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_contained_class_xml_warchive: borland-5.8.2*
test_contained_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_cyclic_ptrs_binary_archive: borland-5.8.2*
test_cyclic_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_cyclic_ptrs_text_archive: borland-5.8.2*
test_cyclic_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_cyclic_ptrs_text_warchive: borland-5.8.2*
test_cyclic_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_cyclic_ptrs_xml_archive: borland-5.8.2*
test_cyclic_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_cyclic_ptrs_xml_warchive: borland-5.8.2*
test_cyclic_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_delete_pointer_binary_archive: borland-5.8.2*
test_delete_pointer_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_delete_pointer_text_archive: borland-5.8.2*
test_delete_pointer_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_delete_pointer_text_warchive: borland-5.8.2*
test_delete_pointer_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_delete_pointer_xml_archive: borland-5.8.2*
test_delete_pointer_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_delete_pointer_xml_warchive: borland-5.8.2*
test_delete_pointer_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_demo: borland-5.8.2*
test_demo_auto_ptr: borland-5.8.2*
test_demo_auto_ptr_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_demo_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_demo_exception: borland-5.8.2*
test_demo_exception_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_demo_fast_archive: borland-5.8.2*
test_demo_fast_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_demo_pimpl: borland-5.8.2*
test_demo_pimpl_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_demo_polymorphic: borland-5.8.2*
test_demo_polymorphic_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_demo_portable_archive: borland-5.8.2*
test_demo_portable_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_demo_shared_ptr: borland-5.8.2*
test_demo_shared_ptr_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_demo_xml: borland-5.8.2*
test_demo_xml_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_demo_xml_load: borland-5.8.2*
test_demo_xml_load_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_demo_xml_save: borland-5.8.2*
test_demo_xml_save_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_deque_binary_archive: borland-5.8.2*
test_deque_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_deque_text_archive: borland-5.8.2*
test_deque_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_deque_text_warchive: borland-5.8.2*
test_deque_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_deque_xml_archive: borland-5.8.2*
test_deque_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_deque_xml_warchive: borland-5.8.2*
test_deque_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_binary_archive: borland-5.8.2*
test_derived_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_class_binary_archive: borland-5.8.2*
test_derived_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_class_ptr_binary_archive: borland-5.8.2*
test_derived_class_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_class_ptr_text_archive: borland-5.8.2*
test_derived_class_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_class_ptr_text_warchive: borland-5.8.2*
test_derived_class_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_class_ptr_xml_archive: borland-5.8.2*
test_derived_class_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_class_ptr_xml_warchive: borland-5.8.2*
test_derived_class_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_class_text_archive: borland-5.8.2*
test_derived_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_class_text_warchive: borland-5.8.2*
test_derived_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_class_xml_archive: borland-5.8.2*
test_derived_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_class_xml_warchive: borland-5.8.2*
test_derived_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_text_archive: borland-5.8.2*
test_derived_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_text_warchive: borland-5.8.2*
test_derived_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_xml_archive: borland-5.8.2*
test_derived_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_derived_xml_warchive: borland-5.8.2*
test_derived_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_diamond_binary_archive: borland-5.8.2*
test_diamond_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_diamond_text_archive: borland-5.8.2*
test_diamond_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_diamond_text_warchive: borland-5.8.2*
test_diamond_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_diamond_xml_archive: borland-5.8.2*
test_diamond_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_diamond_xml_warchive: borland-5.8.2*
test_diamond_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_exported_binary_archive: borland-5.8.2*
test_exported_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_exported_text_archive: borland-5.8.2*
test_exported_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_exported_text_warchive: borland-5.8.2*
test_exported_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_exported_xml_archive: borland-5.8.2*
test_exported_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_exported_xml_warchive: borland-5.8.2*
test_exported_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_inclusion: borland-5.8.2*
test_iterators: borland-5.8.2*
test_iterators_base64: borland-5.8.2*
test_list_binary_archive: borland-5.8.2*
test_list_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_list_ptrs_binary_archive: borland-5.8.2*
test_list_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_list_ptrs_text_archive: borland-5.8.2*
test_list_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_list_ptrs_text_warchive: borland-5.8.2*
test_list_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_list_ptrs_xml_archive: borland-5.8.2*
test_list_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_list_ptrs_xml_warchive: borland-5.8.2*
test_list_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_list_text_archive: borland-5.8.2*
test_list_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_list_text_warchive: borland-5.8.2*
test_list_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_list_xml_archive: borland-5.8.2*
test_list_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_list_xml_warchive: borland-5.8.2*
test_list_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_map_binary_archive: borland-5.8.2*
test_map_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_map_text_archive: borland-5.8.2*
test_map_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_map_text_warchive: borland-5.8.2*
test_map_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_map_xml_archive: borland-5.8.2*
test_map_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_map_xml_warchive: borland-5.8.2*
test_map_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_mi_binary_archive: borland-5.8.2*
test_mi_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_mi_text_archive: borland-5.8.2*
test_mi_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_mi_text_warchive: borland-5.8.2*
test_mi_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_mi_xml_archive: borland-5.8.2*
test_mi_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_mi_xml_warchive: borland-5.8.2*
test_mi_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_mult_archive_types: borland-5.8.2*
test_mult_archive_types_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_multiple_ptrs_binary_archive: borland-5.8.2*
test_multiple_ptrs_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_multiple_ptrs_text_archive: borland-5.8.2*
test_multiple_ptrs_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_multiple_ptrs_text_warchive: borland-5.8.2*
test_multiple_ptrs_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_multiple_ptrs_xml_archive: borland-5.8.2*
test_multiple_ptrs_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_multiple_ptrs_xml_warchive: borland-5.8.2*
test_multiple_ptrs_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_no_rtti_binary_archive_dll: intel-linux-9.0* msvc-7.1_stlport4*
test_no_rtti_text_archive_dll: intel-linux-9.0* msvc-7.1_stlport4*
test_no_rtti_text_warchive_dll: intel-linux-9.0* msvc-7.1_stlport4*
test_no_rtti_xml_archive_dll: intel-linux-9.0* msvc-7.1_stlport4*
test_no_rtti_xml_warchive_dll: intel-linux-9.0* msvc-7.1_stlport4*
test_non_default_ctor2_binary_archive: borland-5.8.2*
test_non_default_ctor2_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_non_default_ctor2_text_archive: borland-5.8.2*
test_non_default_ctor2_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_non_default_ctor2_text_warchive: borland-5.8.2*
test_non_default_ctor2_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_non_default_ctor2_xml_archive: borland-5.8.2*
test_non_default_ctor2_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_non_default_ctor2_xml_warchive: borland-5.8.2*
test_non_default_ctor2_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_non_default_ctor_binary_archive: borland-5.8.2*
test_non_default_ctor_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_non_default_ctor_text_archive: borland-5.8.2*
test_non_default_ctor_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_non_default_ctor_text_warchive: borland-5.8.2*
test_non_default_ctor_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_non_default_ctor_xml_archive: borland-5.8.2*
test_non_default_ctor_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_non_default_ctor_xml_warchive: borland-5.8.2*
test_non_default_ctor_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_non_intrusive_binary_archive: borland-5.8.2*
test_non_intrusive_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_non_intrusive_text_archive: borland-5.8.2*
test_non_intrusive_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_non_intrusive_text_warchive: borland-5.8.2*
test_non_intrusive_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_non_intrusive_xml_archive: borland-5.8.2*
test_non_intrusive_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_non_intrusive_xml_warchive: borland-5.8.2*
test_non_intrusive_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_null_ptr_binary_archive: borland-5.8.2*
test_null_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_null_ptr_text_archive: borland-5.8.2*
test_null_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_null_ptr_text_warchive: borland-5.8.2*
test_null_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_null_ptr_xml_archive: borland-5.8.2*
test_null_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_null_ptr_xml_warchive: borland-5.8.2*
test_null_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_nvp_binary_archive: borland-5.8.2*
test_nvp_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_nvp_text_archive: borland-5.8.2*
test_nvp_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_nvp_text_warchive: borland-5.8.2*
test_nvp_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_nvp_xml_archive: borland-5.8.2*
test_nvp_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_nvp_xml_warchive: borland-5.8.2*
test_nvp_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_object_binary_archive: borland-5.8.2*
test_object_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_object_text_archive: borland-5.8.2*
test_object_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_object_text_warchive: borland-5.8.2*
test_object_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_object_xml_archive: borland-5.8.2*
test_object_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_object_xml_warchive: borland-5.8.2*
test_object_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_optional_binary_archive: borland-5.8.2*
test_optional_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_optional_text_archive: borland-5.8.2*
test_optional_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_optional_text_warchive: borland-5.8.2*
test_optional_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_optional_xml_archive: borland-5.8.2*
test_optional_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_optional_xml_warchive: borland-5.8.2*
test_optional_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_polymorphic_binary_archive: borland-5.8.2*
test_polymorphic_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_polymorphic_text_archive: borland-5.8.2*
test_polymorphic_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_polymorphic_text_warchive: borland-5.8.2*
test_polymorphic_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_polymorphic_xml_archive: borland-5.8.2*
test_polymorphic_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_polymorphic_xml_warchive: borland-5.8.2*
test_polymorphic_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_primitive_binary_archive: borland-5.8.2*
test_primitive_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_primitive_text_archive: borland-5.8.2*
test_primitive_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_primitive_text_warchive: borland-5.8.2*
test_primitive_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_primitive_xml_archive: borland-5.8.2*
test_primitive_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_primitive_xml_warchive: borland-5.8.2*
test_primitive_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_private_ctor: borland-5.8.2*
test_private_ctor_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_recursion_binary_archive: borland-5.8.2*
test_recursion_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_recursion_text_archive: borland-5.8.2*
test_recursion_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_recursion_text_warchive: borland-5.8.2*
test_recursion_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_recursion_xml_archive: borland-5.8.2*
test_recursion_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_recursion_xml_warchive: borland-5.8.2*
test_recursion_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_registered_binary_archive: borland-5.8.2*
test_registered_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_registered_text_archive: borland-5.8.2*
test_registered_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_registered_text_warchive: borland-5.8.2*
test_registered_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_registered_xml_archive: borland-5.8.2*
test_registered_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_registered_xml_warchive: borland-5.8.2*
test_registered_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_reset_object_address: borland-5.8.2*
test_reset_object_address_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_set_binary_archive: borland-5.8.2*
test_set_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_set_text_archive: borland-5.8.2*
test_set_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_set_text_warchive: borland-5.8.2*
test_set_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_set_xml_archive: borland-5.8.2*
test_set_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_set_xml_warchive: borland-5.8.2*
test_set_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_shared_ptr_132_binary_archive: borland-5.8.2*
test_shared_ptr_132_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_shared_ptr_132_text_archive: borland-5.8.2*
test_shared_ptr_132_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_shared_ptr_132_text_warchive: borland-5.8.2*
test_shared_ptr_132_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_shared_ptr_132_xml_archive: borland-5.8.2*
test_shared_ptr_132_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_shared_ptr_132_xml_warchive: borland-5.8.2*
test_shared_ptr_132_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_shared_ptr_binary_archive: borland-5.8.2*
test_shared_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_shared_ptr_text_archive: borland-5.8.2*
test_shared_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_shared_ptr_text_warchive: borland-5.8.2*
test_shared_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_shared_ptr_xml_archive: borland-5.8.2*
test_shared_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_shared_ptr_xml_warchive: borland-5.8.2*
test_shared_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_simple_class_binary_archive: borland-5.8.2*
test_simple_class_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_simple_class_ptr_binary_archive: borland-5.8.2*
test_simple_class_ptr_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_simple_class_ptr_text_archive: borland-5.8.2*
test_simple_class_ptr_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_simple_class_ptr_text_warchive: borland-5.8.2*
test_simple_class_ptr_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_simple_class_ptr_xml_archive: borland-5.8.2*
test_simple_class_ptr_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_simple_class_ptr_xml_warchive: borland-5.8.2*
test_simple_class_ptr_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_simple_class_text_archive: borland-5.8.2*
test_simple_class_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_simple_class_text_warchive: borland-5.8.2*
test_simple_class_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_simple_class_xml_archive: borland-5.8.2*
test_simple_class_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_simple_class_xml_warchive: borland-5.8.2*
test_simple_class_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_smart_cast: borland-5.8.2*
test_split_binary_archive: borland-5.8.2*
test_split_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_split_text_archive: borland-5.8.2*
test_split_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_split_text_warchive: borland-5.8.2*
test_split_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_split_xml_archive: borland-5.8.2*
test_split_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_split_xml_warchive: borland-5.8.2*
test_split_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_static_warning: borland-5.8.2*
test_tracking_binary_archive: borland-5.8.2*
test_tracking_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_tracking_text_archive: borland-5.8.2*
test_tracking_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_tracking_text_warchive: borland-5.8.2*
test_tracking_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_tracking_xml_archive: borland-5.8.2*
test_tracking_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_tracking_xml_warchive: borland-5.8.2*
test_tracking_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_unregistered_binary_archive: borland-5.8.2*
test_unregistered_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_unregistered_text_archive: borland-5.8.2*
test_unregistered_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_unregistered_text_warchive: borland-5.8.2*
test_unregistered_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_unregistered_xml_archive: borland-5.8.2*
test_unregistered_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_unregistered_xml_warchive: borland-5.8.2*
test_unregistered_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_utf8_codecvt: borland-5.8.2*
test_variant_binary_archive_dll: intel-linux-9.0* msvc-7.1_stlport4*
test_variant_text_archive_dll: intel-linux-9.0* msvc-7.1_stlport4*
test_variant_text_warchive_dll: intel-linux-9.0* msvc-7.1_stlport4*
test_variant_xml_archive_dll: intel-linux-9.0* msvc-7.1_stlport4*
test_variant_xml_warchive_dll: intel-linux-9.0* msvc-7.1_stlport4*
test_vector_binary_archive: borland-5.8.2*
test_vector_binary_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_vector_text_archive: borland-5.8.2*
test_vector_text_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_vector_text_warchive: borland-5.8.2*
test_vector_text_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_vector_xml_archive: borland-5.8.2*
test_vector_xml_archive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_vector_xml_warchive: borland-5.8.2*
test_vector_xml_warchive_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
test_void_cast: borland-5.8.2*
test_void_cast_dll: borland-5.8.2* intel-linux-9.0* msvc-7.1_stlport4*
|signals|
dead_slot_test: borland-5.8.2*
deletion_test: borland-5.8.2*
ordering_test: borland-5.8.2*
signal_n_test: borland-5.8.2*
signal_test: msvc-6.5_stlport4
trackable_test: borland-5.8.2*
|spirit|
bug_000008: intel-linux-9.0*
escape_char_parser_tests: msvc-7.1_stlport4*
escape_char_parser_tests_debug: msvc-7.1_stlport4*
grammar_mt_tests: intel-linux-9.0*
owi_mt_tests: intel-linux-9.0*
parametric_tests_debug: msvc-7.1_stlport4*
scanner_value_type_tests: msvc-7.1_stlport4*
scanner_value_type_tests_debug: msvc-7.1_stlport4*
scoped_lock_tests: intel-linux-9.0*
scoped_lock_tests_debug: intel-linux-9.0*
|statechart|
DllTestNative: intel-linux-9.0*
DllTestNormal: intel-linux-9.0*
TransitionTestBoth: intel-vc71-win-9.1
TransitionTestNative: intel-vc71-win-9.1
TransitionTestNormal: intel-vc71-win-9.1
TransitionTestRelaxed: intel-vc71-win-9.1
|static_assert|
static_assert_example_3: msvc-6.5_stlport4
|test|
basic_cstring_test: msvc-7.1_stlport4*
boost_check_equal_str: intel-linux-9.0* msvc-6.5 msvc-6.5 msvc-6.5_stlport4
errors_handling_test: intel-linux-9.0* msvc-6.5_stlport4
fixed_mapping_test: intel-linux-9.0* msvc-6.5_stlport4
ifstream_line_iterator_test: intel-linux-9.0* msvc-6.5_stlport4
output_test_stream_test: intel-linux-9.0* msvc-6.5_stlport4
parameterized_test_test: intel-linux-9.0* msvc-6.5_stlport4
prg_exec_fail3: cw-9.4
result_report_test: intel-linux-9.0* msvc-6.5_stlport4
test_case_template_test: intel-linux-9.0* msvc-6.5_stlport4
test_fp_comparisons: intel-linux-9.0*
test_tools_test: intel-linux-9.0* msvc-6.5 msvc-6.5 msvc-6.5_stlport4
token_iterator_test: intel-linux-9.0* msvc-7.1_stlport4*
|thread|
test_barrier: intel-linux-9.0*
test_condition: intel-linux-9.0*
test_mutex: intel-linux-9.0*
test_once: intel-linux-9.0*
test_thread: intel-linux-9.0*
test_tss: intel-linux-9.0*
test_xtime: intel-linux-9.0*
|tokenizer|
examples: borland-5.8.2*
|tuple|
io_test: borland-5.8.2*
tuple_test_bench: borland-5.8.2*
|type_traits|
decay_test: msvc-7.1_stlport4*
is_array_test: msvc-6.5_stlport4
is_const_test: msvc-6.5_stlport4
is_empty_test: msvc-6.5_stlport4
is_reference_test: msvc-6.5_stlport4
is_union_test: msvc-6.5_stlport4
is_volatile_test: msvc-6.5_stlport4
tricky_function_type_test: msvc-6.5_stlport4
tricky_partial_spec_test: msvc-6.5_stlport4
|utility|
compressed_pair_test: borland-5.8.2*
iterators_test: borland-5.8.2* msvc-6.5_stlport4
next_prior_test: borland-5.8.2*
operators_test: borland-5.8.2*
ref_test: borland-5.8.2*
|wave|
test_re2c_lexer: intel-linux-9.0* msvc-7.1_stlport4*
test_slex_lexer: intel-linux-9.0* msvc-7.1_stlport4*
testwave: msvc-7.1_stlport4*
testwave_dll: intel-linux-9.0* msvc-7.1_stlport4* sun-5.8
|xpressive|
c_traits: msvc-7.1_stlport4*
misc1: msvc-7.1_stlport4*
misc2: msvc-7.1_stlport4*
multiple_defs: msvc-7.1_stlport4*
regress: msvc-7.1_stlport4*
test1: msvc-7.1_stlport4*
test10: msvc-7.1_stlport4*
test10u: msvc-7.1_stlport4*
test11: msvc-7.1_stlport4*
test11u: msvc-7.1_stlport4*
test1u: msvc-7.1_stlport4*
test2: msvc-7.1_stlport4*
test2u: msvc-7.1_stlport4*
test3: msvc-7.1_stlport4*
test3u: msvc-7.1_stlport4*
test4: msvc-7.1_stlport4*
test4u: msvc-7.1_stlport4*
test5: msvc-7.1_stlport4*
test5u: msvc-7.1_stlport4*
test6: msvc-7.1_stlport4*
test6u: msvc-7.1_stlport4*
test7: msvc-7.1_stlport4*
test7u: msvc-7.1_stlport4*
test8: msvc-7.1_stlport4*
test8u: msvc-7.1_stlport4*
test9: msvc-7.1_stlport4*
test9u: msvc-7.1_stlport4*
test_cycles: msvc-7.1_stlport4*
test_dynamic: msvc-7.1_stlport4*
test_non_char: msvc-7.1_stlport4*
test_static: msvc-7.1_stlport4*
1
0
[ Unchanged from Friday ]
Bug count: 95
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 fcacciola
3 djowel
2 urzuga
2 johnmaddock
2 hubert_holin
2 dlwalker
2 agurtovoy
1 pdimov
1 nmusatti
1 mistevens
1 mclow
1 igaztanaga
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: fcacciola <http://sourceforge.net/users/fcacciola/>
Summary: No zero-argument in_place()
Bug #: 1646100
<http://sourceforge.net/tracker/index.php?func=detail&aid=1646100&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: igaztanaga <http://sourceforge.net/users/igaztanaga/>
Summary: Shmem serious bugs
Bug #: 1518563
<http://sourceforge.net/tracker/index.php?func=detail&aid=1518563&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: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: Warnings on MSVC 2005
Bug #: 1596577
<http://sourceforge.net/tracker/index.php?func=detail&aid=1596577&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: Incorrect usage of bad_write(), bad_seek() etc.
Bug #: 1649001
<http://sourceforge.net/tracker/index.php?func=detail&aid=1649001&group_id=7…>
Assignee: nobody
Summary: Seekable file_descriptor_source /sink?
Bug #: 1649008
<http://sourceforge.net/tracker/index.php?func=detail&aid=1649008&group_id=7…>
Assignee: nobody
Summary: BOOST_IOSTREAMS_HAS_LSEEK64 on Mac OS X
Bug #: 1649025
<http://sourceforge.net/tracker/index.php?func=detail&aid=1649025&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
[ Up from 16 ]
Patch count: 17
3 vladimir_prus
2 rogeeff
2 agurtovoy
1 turkanis
1 ramey
1 pdimov
1 jsiek
1 johnmaddock
1 grafik
1 dlwalker
1 david_abrahams
1 az_sw_dude
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: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: Unused variable in format date parser
Bug #: 1652860
<http://sourceforge.net/tracker/index.php?func=detail&aid=1652860&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: 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: ramey <http://sourceforge.net/users/ramey/>
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: 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
[ Up from 38 ]
Support count: 39
9 grafik
5 vladimir_prus
4 johnmaddock
3 nobody
3 jsiek
3 jbandela
3 az_sw_dude
2 turkanis
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: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: date_time_zonespec file for 2007?
Bug #: 1652594
<http://sourceforge.net/tracker/index.php?func=detail&aid=1652594&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
[Boost-bugs] [ boost-Bugs-1654012 ] Problem compiling regex with icu support on solaris
by SourceForge.net 07 Feb '07
by SourceForge.net 07 Feb '07
07 Feb '07
Bugs item #1654012, was opened at 2007-02-07 03:12
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=1654012&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: build
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Problem compiling regex with icu support on solaris
Initial Comment:
Hi,
I'm trying to compile boost 1.33.1 with icu support on Solaris, with SUNpro compiler. The file ico.cpp doesn't compile.
The compilation line is:
I define ICU_PATH, and eventually the command line:
% CC -c -O2 -mt -I../../../ -o sunpro/libboost_regex_mt/icu.o ../src/icu.cpp -DBOOST_HAS_ICU=1 -I$ICU_PATH/include
"../../..//boost/iterator/iterator_facade.hpp", line 838: Error: Could not find a match for boost::iterator_core_access::equal<boost::iterator_core_access::Facade1, boost::iterator_core_access::Facade2>(const boost::u32_to_u16_iterator<const int*, unsigned short>, const boost::u32_to_u16_iterator<const int*, unsigned short>, boost::is_convertible<boost::u32_to_u16_iterator<const int*, unsigned short>, boost::u32_to_u16_iterator<const int*, unsigned short>>).
It works with no problem with gcc (on Linux and on Solaris).
Thanks, Moddy. ( moddyt(a)itemfield.com)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1654012&group_…
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Boost-bugs mailing list
Boost-bugs(a)lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/boost-bugs
1
0
hello,
I would like to be able to recycle boost format in a Matlab(tm) way to output
vectors or lists. I also think it could be valuable to know the number of
elements that can be fed to a given format string.
If it worked the sample code provided at the end of this mail that use a
format for 2 doubles would produce the following output on a vector
containing twelve doubles :
A-> 0 B-> 0.5
A-> 1 B-> 1.5
A-> 2 B-> 2.5
A-> 3 B-> 3.5
A-> 4 B-> 4.5
A-> 5 B-> 5.5
Alas, there is no public method num_args() in the basic_format class...
---- What I propose
The only feature needed in format to make the code work is to be able to
access the number of arguments expected after the format parsing,
i.e. an accessor to the private field num_args_ of class
basic_format which is defined in format_class.hpp.
I propose to add around line 84 of format_class.hpp the code:
int num_args() const { return num_args_; }
I don't think it can it be harmful. Thank you for telling me if I am wrong
or if there is an other way to do what I mean without modifying anything.
It's my first post on this list. Please be sure to tell me if my suggestion
is not posted at the proper place.
Thanks
JT Lapresté
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// sample code begin
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include <vector>
#include <boost/format.hpp>
using namespace std;
std::string recycle_format(const std::string & fstr, vector < double > &a)
{
using namespace boost::io;
boost::format f(fstr);
f.exceptions( all_error_bits ^ too_few_args_bit );
size_t l = f.num_args(), ii = 0;
std::string s;
for(size_t i=0; i < a.size(); i++)
{
f = f %a[i];
ii++;
if(!(ii%l)) {
ii = 0;
s += f.str();
f.clear();
}
}
if((ii%l)) s+= f.str();
return s;
}
int main()
{
vector < double > a;
for(size_t i=0; i < 12; i++) a.push_back(i/2.0);
cout << recycle_format("A-> %1.0f B-> %3.1f\n", a) << endl;
return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// code end
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1
0