Boost
Threads by month
- ----- 2026 -----
- 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
February 2007
- 160 participants
- 353 discussions
AMDG
The documentation of find says
template<
typename Sequence,
typename T
>
/unspecified/ find(Sequence const& seq);
This should be
template<
typename T,
typename Sequence
>
/unspecified/ find(Sequence const& seq);
In Christ,
Steven Watanabe
2
1
AMDG
The description of Polymorphic Function Object says
that it is a refinement of MPL Metafunction Class.
In Christ,
Steven Watanabe
2
1
Hello all
Hope I'm not too late with a small review of the accumulators library:
• What is your evaluation of the design?
I very much like the user interface of the library, it's pretty clean
and concise; writing something like
accumulator_set<double, stats<tag::median(with_p_square_quantile) > > acc;
is as expressive as it gets. This is just cool.
On the other side of the library, when defining new features, things
are a bit more complicated. I experienced some ugly compile-time
troubles when trying to implement a group of features that depended on
each other. Writing that code took considerable more time than writing
the same functionality without the framework. I'm quite willing to
take this effort, though, for all the benefits of the accumulators framework.
Then, I can't really get warm with the automatic feature resolution.
On the one hand, it's a great feature for reducing accumulator set
definition code. On the other hand, the programmer has to know which
features get pulled in anyway (you'll need to include those header
files, right?). Furthermore, it seems a bit dangerous to have such
automatisms in a field, where you should always know what you're doing
anyway (which is again exemplified by the discussion of the various
implementations of the mean and variance features on this list). Then
there is BOOST_ACCUMULATORS_MAX_FEATURES, which has to take into
account even those features that are pulled in automatically. This is
a bit counter intuitive and caused some troubles on my side.
I'd wish that accumulator_set provided an operator<< to print it to
console or files. We're often using accumulator sets from an
interactive python console, which would further benefit from a
pretty-printed output. Equally, they should be made serializable. The
formerly discussed combine() feature could also come in very handy for
some of our applications.
Overall, I think the library's complexity is as high as I'm willing
to go for every day's business. It's really nothing for C++ beginners
to start with, as it requires some intermediate level "boost"
thinking.
• What is your evaluation of the implementation?
The framework code is inspiring, as most of Eric's work. The stats
are very well separated and pretty easy to read.
• What is your evaluation of the documentation?
A bit short at times. Some tools lack detailed description
(depends_on, feature_of etc.), the external<> mechanics are not
clearly described. The overall structure of the user's guide is very
good, though.
• What is your evaluation of the potential usefulness of the library?
Well, we're already using it in production code, so I guess it's very
real. There are many other application fields where I could imagine
using it (signal processing, imaging, embedded systems with limited
memory etc.)
• Did you try to use the library? With what compiler? Did you have
any problems?
We're using the library on debian sarge with GCC3.4. Apart for some
long and obscure compiler outputs on errors (and that's hardly boost
accumulator's fault), all went fine.
• How much effort did you put into your evaluation? A glance? A quick
reading? In-depth study?
I've been using the library as end-user for quite some time now. I
did not study all of the source code nor all of the design decisions,
but come across many aspects of the library during normal usage.
• Are you knowledgeable about the problem domain?
I do know our requirements for statistics on current project, and see
where they cause problems, But I'm not really a statistics expert.
• Do you think the library should be accepted as a Boost library?
Of course, it's a great enhancement to boost.
Bernhard
2
1
What is the status of the promotion traits library as I would like to
evaluate it?
I have found it as conditionally accepted (April 12 2006) but I cannot
find it in the CVS regressions.
John Fletcher
2
3
> - 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