Boost
Threads by month
- ----- 2025 -----
- 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
November 2006
- 168 participants
- 398 discussions

((atomic)+(POD)+(C++)) = { atomic initialization, of static C++ objects };
by Chris Thomasson 09 Nov '06
by Chris Thomasson 09 Nov '06
09 Nov '06
I have posted a couple parts of a paper that will show how to realize
strongly thread-safe construction and destruction of C++ objects on the fly,
in multi-threaded environment. The basic technique is fairly straightforward
IMHO. You can use a POD from a C API that can be made up of:
extern "C" {
/*-- the following types/declarations, --*/
typedef struct pod_s pod_t;
typedef pod_t volatile podbase_t;
typedef podbase_t *podbaseptr_t;
typedef intword_t podref_t;
typedef uintword_t podrefadj_t;
static int pod_refadd(podbaseptr_t, podrefadj_t);
static int pod_refsub(podbaseptr_t, podrefadj_t);
/*-- a defeinition of the following pod_t --*/
struct pod_s {
podref_t count;
void *state;
};
/*-- which is staticaly initialized with ---*/
#define PODINIT() {0, 0}
/*-- and modified by --*/
int pod_refadd(podbaseptr_t _this, podrefadj_t count) {
return /* refcount add logic */;
}
int pod_refsub(podbaseptr_t _this, podrefadj_t count) {
return /* refcount sub logic */;
}
}
//-- as a static member of a static C++ template --
namespace static_pod {
template<typename T>
struct impl {
static podbase_t s_thispodbase;
//-- which only has to static API functions that --
//-- operate on integer words and pointers --
static T* acquire(impl<T>*, podrefadj_t);
static T* release(impl<T>*, podrefadj_t);
};
//-- to its static member and type as --
template<typename T>
podbase_t impl<T>::s_thispodbase = PODINIT();
template<typename T>
T* impl<T>::acquire(impl<T> *_this, podrefadj_t count) {
//-- the parameters for the C API --
int ret = pod_refadd(&impl<T>::s_thispodbase, count)
//-- that tells us when to call into the--
if (ret) {
//-- constructor logic --
}
return ...;
}
template<typename T>
void impl<T>::release(impl<T> *_this, podrefadj_t count) {
int ret = pod_refsub(&impl<T>::s_thispodbase, count)
if (ret) {
//-- or destructor logic--
}
return ...;
}
}
of C++ objects in a multi-threaded environment. I think I solved this one.
My paper will soon be updated with information on how to fully implement and
use my algorithm... I can't really think of another solution that can do
what this does... Humm... The paper I am working on will include
implementation details' for every aspect of the algorithm. It should updated
with a lot more information during the next week...
Any thoughts?
1
0
I have just committed some asio changes to cvs HEAD that will
break application code. These changes are part of what's needed
to bring the interface into sync with the TR2 proposal. The big
change is to the error handling classes, as described below.
An async handler of the form:
void my_handler(const boost::asio::error& e);
becomes:
void my_handler(const boost::system::error_code& e);
Synchronous error handling like this:
boost::asio::error e;
sock.connect(ep, boost::asio::assign_error(e));
becomes:
boost::system::error_code e;
sock.connect(ep, e);
And where previously a boost::asio::error exception was thrown,
the new exception thrown is boost::system::system_error.
Error constants like boost::asio::error::eof stay as they are,
i.e.:
void my_handler(const boost::system::error_code& e)
{
if (e == boost::asio::error::eof)
{
...
}
}
Programs will now need to link against the boost.system library
(which is where boost::system::error_code and
boost::system::system_error reside).
Once I do a few more TR2-related changes I will post regenerated
doxygen documentation to the vault. Stay tuned.
Cheers,
Chris
4
6
Three mpl headers -- integral_c.hpp, integral_c_fwd.hpp and
integral_wrapper.hpp -- contain outdated workarounds for HP-UX
aCC. When compiled with aCC6, these workarounds are causing
compilation errors because the resulting code looks like the
following:
template< typename T, long N >
struct integral_c
{
//#if BOOST_WORKAROUND(__HP_aCC, BOOST_TESTED_AT(53800))
static const T value = N;
//#else
// the correct code
// static const T value = (T) N;
//#endif
};
enum udt_builtin_mixture_enum {};
integral_c<udt_builtin_mixture_enum, 0> x;
A typical compilation error is:
"../../../boost/mpl/aux_/integral_wrapper.hpp", line 45: error #2144: a
value
of type "long" cannot be used to initialize an entity of type
"const boost::numeric::sign_mixture_enum"
BOOST_STATIC_CONSTANT(AUX_WRAPPER_VALUE_TYPE, value = N);
Attached patches change invocation of BOOST_WORKAROUND macro in
the aforementioned mpl headers from:
#if BOOST_WORKAROUND(__HP_aCC, BOOST_TESTED_AT(53800))
to:
#if BOOST_WORKAROUND(__HP_aCC, <= 53800)
With patches below, the following tests that previously failed
to compile with "error #2144", compile and pass:
Library Test
------------------ ---------------------
conversion numeric_cast_test
numeric/conversion traits_test
numeric/conversion converter_test
numeric/conversion udt_support_test
numeric/conversion numeric_cast_test
numeric/conversion udt_example_0
python builtin_converters
python vector_indexing_suite
python pointer_vector
xpressive regress
xpressive c_traits
xpressive misc1
xpressive test_dynamic
xpressive multiple_defs
Can the three patches below be applied to both the HEAD and the
RC branch?
Thanks,
Boris
Index: integral_c.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/mpl/integral_c.hpp,v
retrieving revision 1.22
diff -r1.22 integral_c.hpp
22c22
< #if BOOST_WORKAROUND(__HP_aCC, BOOST_TESTED_AT(53800))
---
> #if BOOST_WORKAROUND(__HP_aCC, <= 53800)
Index: integral_c_fwd.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/mpl/integral_c_fwd.hpp,v
retrieving revision 1.4
diff -r1.4 integral_c_fwd.hpp
22c22
< #if BOOST_WORKAROUND(__HP_aCC, BOOST_TESTED_AT(53800))
---
> #if BOOST_WORKAROUND(__HP_aCC, <= 53800)
Index: integral_wrapper.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/mpl/aux_/integral_wrapper.hpp,v
retrieving revision 1.10
diff -r1.10 integral_wrapper.hpp
68c68
< || BOOST_WORKAROUND(__HP_aCC, BOOST_TESTED_AT(53800))
---
> || BOOST_WORKAROUND(__HP_aCC, <= 53800)
2
2
Hi Chris,
Chris Richards <chris.richards(a)yellowfeather.co.uk> wrote:
[...]
> What happens is that the expection is caught in one thread,
> and that thread exits gracefully, but also the handler for the
> async_accpet is called with an error stating "The I/O
> operation has been aborted because of either a thread exit or
> an application request.", causing that thread to exit as well.
Yep, that's the way it works on Windows. Overlapped I/O
operations are tied to the thread that starts them, and so if
that thread exits the operations are cancelled. The effect of
thread-exit on asynchronous operations is deliberately specified
as "implementation-defined" in asio for this reason.
For portability you'll probably have to look at a different way
of structuring it, e.g. an io_service with a fixed sized pool
for handling I/O operations, plus an additional io_service with
a variable pool for handling CPU intensive tasks.
BTW, in CVS the io_service now has member functions run_one(),
poll() and poll_one() in addition to run(). These might offer
you an alternative way of controlling how many threads are in
the pool.
Cheers,
Chris
1
0
From: Jason Kraftcheck <kraftche(a)cae.wisc.edu>
> The TVMET library seems to define implementations of every libm function for
> matrices (sin, pow, etc.). It implements them by applying the equivalent scalar
> function to each matrix element. This kind of stuff results in a lot of noise
> in the library, is unlikely to be very useful, and the theoretical meaning of
> these operations is dubious. For example, mathematically, pow( M, 3 ) for a
> matrix M means M * M * M, which is not the same as cubing each element of M.
Worse still, there is a mathematical definition for exp(M), sin(M), etc., involving power series expansion, which is used from time to time. So defining it differently in a library is quite misleading. It's sometimes useful to apply a function to every element of a matrix, but this should be done via an analog of for_each (IMO).
-
James Jones Administrative Data Mgmt.
Webmaster 375 Raritan Center Pkwy, Suite A
Data Architect Edison, NJ 08837
1
0
I have implemented a simple tcp server using asio. I wish to be able to
dynamically add and remove threads from the io_service thread pool, so that
when the server is heavily loaded it can be given more threads to cope with
the load, but when the load reduces it can release the threads back to the OS.
I've tried posting to the io_service a handler which just throws an exception
so that the thread exits, but it also resets the tcp connection and causes the
acceptor thread to exit as well.
Is there a way of cleanly stopping just a single io_service::run method which
would then cause the thread to exit?
2
3
Boost Inspection Report
Run Date: 17:02:54 UTC, Wednesday 08 November 2006
An inspection program <http://www.boost.org/tools/inspect/index.html>
checks each file in the current Boost CVS for various problems,
generating this as output. Problems detected include tabs in files,
missing copyrights, broken URL's, and similar misdemeanors.
Totals:
11424 files scanned
892 directories scanned (including root)
243 problems reported
Problem counts:
0 files with invalid line endings
0 bookmarks with invalid characters
3 invalid urls
176 broken links
21 unlinked files
7 file/directory names issues
1 files with tabs
0 violations of the Boost min/max guidelines
35 usages of unnamed namespaces in headers (including .ipp files)
Summary:
archive (3)
asio (1)
bind (2)
boost-root (1)
build (2)
date_time (1)
doc (2)
filesystem (37)
fusion (1)
graph (3)
inspect (1)
interprocess (1)
iostreams (2)
lambda (4)
more (66)
mpl (1)
multi_array (2)
numeric (1)
parameter (2)
program_options (1)
ptr_container (1)
python (7)
regex (1)
regression (14)
serialization (1)
signals (1)
test (81)
tuple (1)
type_traits (1)
utility (1)
Details:
*R* invalid (cr only) line-ending
*A* invalid bookmarks, invalid urls, broken links, unlinked files
*N* file/directory names issues
*T* tabs in file
*M* uses of min or max that have not been protected from the min/max macros, or unallowed #undef-s
*U* unnamed namespace in header
|archive|
boost/archive/basic_streambuf_locale_saver.hpp:
*N* name exceeds 31 characters
boost/archive/impl/xml_wiarchive_impl.ipp:
*U* unnamed namespace at line 53
boost/archive/iterators/remove_whitespace.hpp:
*U* unnamed namespace at line 57
|asio|
libs/asio/index.html:
*A* broken link: doc/html/index.html
|bind|
boost/bind/placeholders.hpp:
*U* unnamed namespace at line 25
libs/bind/index.html:
*A* broken link: ../../site/LICENSE_1_0.txt
|boost-root|
index.htm:
*A* broken link: ../doc/html/signals.html
|build|
tools/build/v2/example/make/main.cpp.pro:
*N* name contains more than one dot character ('.')
tools/build/v2/test/test_system.html:
*A* unlinked file
|date_time|
libs/date_time/xmldoc/date_time_docs_howto.html:
*A* unlinked file
|doc|
doc/html/boost_math/inverse_complex.html:
*A* unlinked file
doc/html/jam.html:
*A* unlinked file
|filesystem|
libs/filesystem/doc/do-list.htm:
*A* invalid URL (hardwired file): file://?/
*A* invalid URL (hardwired file): file://?/UNC/
libs/filesystem/doc/i18n.html:
*A* broken link: convenience.htm#basic_recursive_directory_iterator
*A* broken link: exception.htm
*A* broken link: operations.htm
*A* broken link: operations.htm#Do-the-right-thing
*A* broken link: operations.htm#is_directory
*A* broken link: operations.htm#is_file
*A* broken link: operations.htm#status
libs/filesystem/doc/index.htm:
*A* broken link: ../build/Jamfile
*A* broken link: convenience.htm
*A* broken link: fstream.htm
*A* broken link: operations.htm#create_directory
*A* broken link: operations.htm#create_hard_link
*A* broken link: operations.htm#current_path
*A* broken link: operations.htm#directory_iterator
*A* broken link: operations.htm#equivalent
*A* broken link: operations.htm#file_size
*A* broken link: operations.htm#initial_path
*A* broken link: operations.htm#is_file
*A* broken link: operations.htm#is_symlink
*A* broken link: operations.htm#status
*A* broken link: operations.htm#symlink_status
*A* broken link: path.htm#Canonical
*A* broken link: path.htm#Grammar
*A* broken link: path.htm#Normalized
*A* broken link: path.htm#default_name_check
*A* broken link: path.htm#name_check_mechanism
*A* broken link: path.htm#normalize
*A* broken link: path.htm#operator_eq
*A* broken link: path.htm#synopsis
libs/filesystem/doc/portability_guide.htm:
*A* broken link: path.htm#name_check_typedef
libs/filesystem/doc/tr2_proposal.html:
*A* invalid URL (hardwired file): file:///C|/boost/site/libs/filesystem/doc/operations.htm#complete_note
|fusion|
libs/fusion/index.html:
*A* broken link: doc/html/index.html
|graph|
boost/graph/maximum_cardinality_matching.hpp:
*N* name exceeds 31 characters
libs/graph/doc/lengauer_tarjan_dominator_tree.htm:
*N* name exceeds 31 characters
libs/graph/doc/sorted_erdos_renyi_generator.html:
*N* name exceeds 31 characters
|inspect|
tools/inspect/index.html:
*A* broken link: build/Jamfile
|interprocess|
libs/interprocess/index.html:
*A* broken link: doc/html/index.html
|iostreams|
libs/iostreams/doc/acknowledgments.html:
*A* unlinked file
libs/iostreams/doc/concepts/multi-character.html:
*A* unlinked file
|lambda|
boost/lambda/core.hpp:
*U* unnamed namespace at line 62
boost/lambda/detail/lambda_functors.hpp:
*U* unnamed namespace at line 25
boost/lambda/exceptions.hpp:
*U* unnamed namespace at line 24
libs/lambda/doc/index.html:
*A* broken link: ../../LICENSE_1_0.txt
|more|
more/getting_started.html:
*A* broken link: ../Jamfile
*A* broken link: ../tools/build/v1/borland-tools.html
*A* broken link: ../tools/build/v1/build_system.htm
*A* broken link: ../tools/build/v1/build_system.htm#build
*A* broken link: ../tools/build/v1/como-tools.html
*A* broken link: ../tools/build/v1/cw-tools.html
*A* broken link: ../tools/build/v1/darwin-tools.html
*A* broken link: ../tools/build/v1/dmc-stlport-tools.html
*A* broken link: ../tools/build/v1/dmc-tools.html
*A* broken link: ../tools/build/v1/edg-tools.html
*A* broken link: ../tools/build/v1/gcc-nocygwin-tools.html
*A* broken link: ../tools/build/v1/gcc-stlport-tools.html
*A* broken link: ../tools/build/v1/gcc-tools.html
*A* broken link: ../tools/build/v1/intel-linux-tools.html
*A* broken link: ../tools/build/v1/intel-win32-tools.html
*A* broken link: ../tools/build/v1/kcc-tools.html
*A* broken link: ../tools/build/v1/kylix-tools.html
*A* broken link: ../tools/build/v1/mingw-stlport-tools.html
*A* broken link: ../tools/build/v1/mingw-tools.html
*A* broken link: ../tools/build/v1/mipspro-tools.html
*A* broken link: ../tools/build/v1/msvc-stlport-tools.html
*A* broken link: ../tools/build/v1/msvc-tools.html
*A* broken link: ../tools/build/v1/sunpro-tools.html
*A* broken link: ../tools/build/v1/tru64cxx-tools.html
*A* broken link: ../tools/build/v1/vacpp-tools.html
*A* broken link: ../tools/build/v1/vc-7_1-stlport-tools.html
*A* broken link: ../tools/build/v1/vc-7_1-tools.html
*A* broken link: ../tools/build/v1/vc-8_0-tools.html
*A* broken link: ../tools/build/v1/vc7-stlport-tools.html
*A* broken link: ../tools/build/v1/vc7-tools.html
more/version_history.html:
*A* broken link: ../tools/build/v1/intel-linux-tools.html
*A* broken link: ../tools/build/v1/intel-win32-tools.html
*A* broken link: ../tools/build/v1/msvc-stlport-tools.html
|mpl|
boost/mpl/alias.hpp:
*U* unnamed namespace at line 17
|multi_array|
boost/multi_array/base.hpp:
*U* unnamed namespace at line 69
libs/multi_array/test/generative_tests.hpp:
*U* unnamed namespace at line 57
|numeric|
libs/numeric/conversion/index.html:
*A* broken link: ../../LICENSE_1_0.txt
|parameter|
libs/parameter/doc/html/python.html:
*A* broken link: tag::x(int
*A* broken link: tag::y*(int
|program_options|
libs/program_options/doc/index.html:
*A* broken link: ../.../../LICENSE_1_0.txt
|ptr_container|
libs/ptr_container/doc/tutorial_example.html:
*A* unlinked file
|python|
libs/python/doc/building.html:
*A* broken link: ../../../tools/build/v1/build_system.htm
*A* broken link: ../../../tools/build/v1/build_system.htm#user_globals
*A* broken link: ../../../tools/build/v1/build_system.htm#variants
libs/python/doc/tutorial/index.html:
*A* broken link: ../../../LICENSE_1_0.txt
libs/python/doc/v2/May2002.html:
*A* broken link: ../../../../tools/build/v1/build_system.htm
*A* broken link: ../../../../tools/build/v1/gen_aix_import_file.py
libs/python/doc/v2/faq.html:
*A* broken link: ../../../../tools/build/v1/build_system.htm
|regex|
libs/regex/performance/input.html:
*A* unlinked file
|regression|
regression/.htaccess:
*N* leading character of ".htaccess" is not alphabetic
tools/regression/index.htm:
*A* broken link: build/Jamfile
tools/regression/xsl_reports/xsl/html/issues_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/library_developer_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/library_user_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/make_tinyurl.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/summary_developer_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/summary_user_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/issues_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/library_developer_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/library_user_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/make_tinyurl.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/summary_developer_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/summary_user_legend.html:
*A* unlinked file
|serialization|
libs/serialization/src/basic_xml_grammar.ipp:
*U* unnamed namespace at line 43
|signals|
boost/signals/detail/named_slot_map.hpp:
*T*
|test|
boost/test/floating_point_comparison.hpp:
*U* unnamed namespace at line 206
*U* unnamed namespace at line 228
boost/test/impl/cpp_main.ipp:
*U* unnamed namespace at line 42
boost/test/impl/exception_safety.ipp:
*U* unnamed namespace at line 400
boost/test/impl/framework.ipp:
*U* unnamed namespace at line 199
boost/test/impl/plain_report_formatter.ipp:
*U* unnamed namespace at line 45
boost/test/impl/progress_monitor.ipp:
*U* unnamed namespace at line 38
boost/test/impl/results_collector.ipp:
*U* unnamed namespace at line 106
boost/test/impl/results_reporter.ipp:
*U* unnamed namespace at line 48
boost/test/impl/unit_test_log.ipp:
*U* unnamed namespace at line 79
boost/test/impl/unit_test_monitor.ipp:
*U* unnamed namespace at line 35
boost/test/impl/unit_test_parameters.ipp:
*U* unnamed namespace at line 50
boost/test/results_collector.hpp:
*U* unnamed namespace at line 40
boost/test/test_tools.hpp:
*U* unnamed namespace at line 255
boost/test/utils/iterator/token_iterator.hpp:
*U* unnamed namespace at line 166
boost/test/utils/named_params.hpp:
*U* unnamed namespace at line 216
boost/test/utils/runtime/cla/dual_name_parameter.ipp:
*U* unnamed namespace at line 43
boost/test/utils/runtime/cla/modifier.hpp:
*U* unnamed namespace at line 34
boost/test/utils/runtime/env/modifier.hpp:
*U* unnamed namespace at line 34
boost/test/utils/runtime/file/config_file.hpp:
*U* unnamed namespace at line 169
*U* unnamed namespace at line 64
*U* unnamed namespace at line 74
boost/test/utils/runtime/file/config_file_iterator.hpp:
*U* unnamed namespace at line 68
boost/test/utils/trivial_singleton.hpp:
*U* unnamed namespace at line 52
*U* unnamed namespace at line 61
libs/test/build/msvc71_proj/config_file_iterator_test.vcproj:
*N* name exceeds 31 characters
libs/test/doc/components/prg_exec_monitor/compilation.html:
*A* broken link: ../../../build/Jamfile
libs/test/doc/components/prg_exec_monitor/index.html:
*A* broken link: ../../../../../boost/test/cpp_main.hpp
libs/test/doc/components/test_tools/index.html:
*A* broken link: ../../tests/boost_check_equal_str.html
libs/test/doc/components/test_tools/reference/BOOST_CHECK_CLOSE.html:
*A* broken link: BOOST_CHECK_CLOSE_FRACTION.html
libs/test/doc/components/test_tools/reference/BOOST_CHECK_MESSAGE.html:
*A* broken link: BOOST_MESSAGE.html
libs/test/doc/components/test_tools/reference/BOOST_CHECK_SMALL.html:
*A* broken link: BOOST_CHECK_CLOSE_FRACTION.html
libs/test/doc/components/test_tools/reference/tools_list.html:
*A* broken link: ../../btl1.gif
*A* broken link: BOOST_CHECK_CLOSE_FRACTION.html
libs/test/doc/components/utf/compilation.html:
*A* broken link: ../../../build/Jamfile
libs/test/doc/components/utf/components/index.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/components/test_case/abstract_interface.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/auto_register_facility.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/boost_function_tc.html:
*A* broken link: ../../../../../../../boost/test/unit_test_suite_ex.hpp
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/class_tc.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/function_tc.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/index.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/param_boost_function_tc.html:
*A* broken link: ../../../../../../../boost/test/unit_test_suite_ex.hpp
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/param_class_tc.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/param_function_tc.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/tc_template.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_log/custom_log_formatter.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_log/index.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_result/index.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_suite/index.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/index.html:
*A* broken link: getting_started/index.html
libs/test/doc/components/utf/parameters/build_info.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/catch_system_errors.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/detect_memory_leaks.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/index.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/log_format.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/log_level.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/no_result_code.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/output_format.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/random.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/report_format.html:
*A* broken link: ../../../../../LICENSE_1_0.txt
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/report_level.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/show_progress.html:
*A* broken link: ../../btl1.gif
libs/test/doc/examples/unit_test_example1.html:
*A* broken link: ../../example/unit_test_example1.cpp
libs/test/doc/examples/unit_test_example2.html:
*A* broken link: ../../example/unit_test_example2.cpp
libs/test/doc/examples/unit_test_example3.html:
*A* broken link: ../../example/unit_test_example3.cpp
libs/test/doc/examples/unit_test_example4.html:
*A* broken link: ../../example/unit_test_example4.cpp
libs/test/doc/examples/unit_test_example5.html:
*A* broken link: ../../example/unit_test_example5.cpp
*A* broken link: ../../example/unit_test_example5.input
libs/test/doc/tests/auto_unit_test_test.html:
*A* broken link: ../../test/auto_unit_test_test.cpp
libs/test/doc/tests/auto_unit_test_test_mult.html:
*A* broken link: ../../test/auto_unit_test_test_mult1.cpp
*A* broken link: ../../test/auto_unit_test_test_mult2.cpp
libs/test/doc/tests/unit_test_suite_ex_test.html:
*A* broken link: ../../test/unit_test_suite_ex_test.cpp
libs/test/doc/tutorials/hello_the_testing_world.html:
*A* broken link: ../../../../../LICENSE_1_0.txt
*A* broken link: ../execution_monitor/index.html
libs/test/doc/tutorials/new_year_resolution.html:
*A* broken link: ../../../../../../LICENSE_1_0.txt
|tuple|
libs/tuple/index.html:
*A* broken link: ../../site/LICENSE_1_0.txt
|type_traits|
libs/type_traits/cxx_type_traits.htm:
*A* unlinked file
|utility|
libs/utility/index.html:
*A* broken link: ../../site/LICENSE_1_0.txt
1
0
Boost Inspection Report
Run Date: 17:03:10 UTC, Wednesday 08 November 2006
An inspection program <http://www.boost.org/tools/inspect/index.html>
checks each file in the current Boost CVS for various problems,
generating this as output. Problems detected include tabs in files,
missing copyrights, broken URL's, and similar misdemeanors.
Totals:
11424 files scanned
892 directories scanned (including root)
1345 problems reported
Problem counts:
877 files missing Boost license info or having wrong reference text
468 files missing copyright notice
Summary:
any (1)
archive (1)
array (1)
assign (2)
bind (6)
boost-root (4)
build (58)
compatibility (2)
concept_check (22)
conversion (5)
detail (4)
disjoint_sets (2)
doc (2)
filesystem (2)
format (8)
function (1)
functional (8)
inspect (1)
integer (9)
iostreams (2)
lambda (10)
libs (6)
logic (2)
math (1)
more (30)
mpl (417)
multi_array (13)
numeric (198)
optional (1)
people (90)
pool (30)
program_options (35)
property_map (15)
ptr_container (111)
python (6)
quickbook (11)
random (20)
range (18)
rational (5)
regex (4)
regression (64)
release (2)
serialization (16)
smart_ptr (12)
test (5)
timer (1)
tokenizer (9)
tr1 (2)
tuple (5)
utility (23)
variant (42)
Details:
*L* missing Boost license info, or wrong reference text
*C* missing copyright notice
|any|
libs/any/doc/
any.xml: *L*
|archive|
boost/archive/detail/
utf8_codecvt_facet.hpp: *L*
|array|
libs/array/doc/
array.xml: *L*
|assign|
libs/assign/doc/
style.css: *L*
libs/assign/
index.html: *L*
|bind|
libs/bind/
bind.html: *L*
libs/bind/doc/
ref.xml: *L*
libs/bind/
mem_fn.html: *L*
ref.html: *C* *L*
libs/bind/test/
Jamfile.v2: *L*
|boost-root|
/
README: *C*
boost.css: *C* *L*
rst.css: *L*
|build|
tools/build/v2/build/
build-request.jam: *L*
modifiers.jam: *L*
tools/build/v2/doc/
Jamfile.v2: *C* *L*
tools/build/v2/doc/src/
advanced.xml: *C* *L*
architecture.xml: *C* *L*
catalog.xml: *C* *L*
extending.xml: *C* *L*
faq.xml: *C* *L*
howto.xml: *C* *L*
install.xml: *C* *L*
recipes.xml: *C* *L*
reference.xml: *C* *L*
standalone.xml: *C* *L*
tutorial.xml: *C* *L*
userman.xml: *C* *L*
tools/build/v2/example/python_modules/
python_helpers.jam: *C* *L*
python_helpers.py: *C* *L*
tools/build/v2/test/
abs_workdir.py: *C* *L*
dependency_property.py: *L*
dependency_test.py: *C* *L*
direct_request_test.py: *C* *L*
dll_path.py: *L*
double_loading.py: *L*
duplicate.py: *L*
echo_args.jam: *C* *L*
empty.jam: *C* *L*
expansion.py: *L*
explicit.py: *L*
gcc_runtime.py: *L*
tools/build/v2/test/project-test3/lib3/
Jamfile: *C* *L*
tools/build/v2/test/
readme.txt: *C* *L*
svn_tree.py: *L*
tag.py: *L*
test_system.html: *L*
tools/build/v2/tools/
sun.jam: *L*
xsltproc.jam: *L*
|compatibility|
libs/compatibility/
generate_cpp_c_headers.py: *L*
index.html: *L*
|concept_check|
libs/concept_check/
bibliography.htm: *L*
concept_check.htm: *L*
concept_covering.htm: *L*
creating_concepts.htm: *L*
libs/concept_check/doc/
Jamfile.v2: *C* *L*
libs/concept_check/doc/reference/
Assignable.xml: *L*
BidirectionalIterator.xml: *L*
CopyConstructible.xml: *L*
DefaultConstructible.xml: *L*
EqualityComparable.xml: *L*
ForwardIterator.xml: *L*
InputIterator.xml: *L*
LessThanComparable.xml: *L*
OutputIterator.xml: *L*
RandomAccessIterator.xml: *L*
SignedInteger.xml: *L*
concepts.xml: *L*
libs/concept_check/
implementation.htm: *L*
prog_with_concepts.htm: *L*
reference.htm: *L*
using_concept_check.htm: *L*
|conversion|
libs/conversion/
cast.htm: *L*
index.html: *C* *L*
lexical_cast.htm: *L*
libs/conversion/test/
Jamfile.v2: *L*
|detail|
boost/detail/
algorithm.hpp: *L*
endian.hpp: *L*
limits.hpp: *L*
utf8_codecvt_facet.hpp: *L*
|disjoint_sets|
libs/disjoint_sets/
bibliography.html: *L*
disjoint_sets.html: *L*
|doc|
doc/html/
reference.css: *C* *L*
|filesystem|
libs/filesystem/doc/
tr2_proposal.html: *L*
libs/filesystem/src/
utf8_codecvt_facet.hpp: *L*
|format|
libs/format/benchmark/
bench_format.cpp: *C*
results.txt: *C* *L*
libs/format/doc/
choices.html: *L*
format.html: *C*
libs/format/
index.html: *C* *L*
libs/format/test/
Jamfile.v2: *L*
|function|
boost/function/detail/
gen_maybe_include.pl: *L*
|functional|
boost/
functional.hpp: *L*
libs/functional/
binders.html: *L*
function_test.cpp: *L*
function_traits.html: *L*
index.html: *L*
mem_fun.html: *L*
negators.html: *L*
ptr_fun.html: *L*
|inspect|
tools/inspect/build/
Jamfile.v2: *L*
|integer|
libs/integer/
cstdint.htm: *C* *L*
libs/integer/doc/
integer_mask.html: *L*
static_min_max.html: *L*
libs/integer/
index.html: *C* *L*
integer.htm: *L*
integer_traits.html: *C* *L*
|iostreams|
libs/iostreams/doc/
menu.html: *C*
libs/iostreams/test/detail/
utf8_codecvt_facet.hpp: *L*
|lambda|
libs/lambda/doc/
Jamfile.v2: *C* *L*
libs/lambda/doc/detail/
README: *C* *L*
lambda_doc.xsl: *C* *L*
lambda_doc_chunks.xsl: *C* *L*
libs/lambda/test/
Makefile: *C* *L*
|libs|
libs/
expected_results.xml: *C* *L*
maintainers.txt: *C* *L*
platform_maintainers.txt: *C* *L*
|logic|
libs/logic/doc/
Jamfile.v2: *C* *L*
|math|
boost/math/
common_factor_rt.hpp: *L*
|more|
more/
borland_cpp.html: *C* *L*
count_bdy.htm: *L*
discussion_policy.htm: *C*
error_handling.html: *L*
generic_exception_safety.html: *C* *L*
generic_programming.html: *L*
microsoft_vcpp.html: *C* *L*
moderators.html: *C*
regression.html: *C* *L*
report-apr-2006.html: *C* *L*
report-jan-2006.html: *C* *L*
more/writingdoc/
design.html: *L*
index.html: *L*
introduction.html: *L*
structure.html: *L*
more/writingdoc/template/
acknowledgments.html: *L*
bibliography.html: *L*
configuration.html: *L*
definitions.html: *L*
faq.html: *L*
header.html: *L*
index.html: *L*
overview.html: *L*
rationale.html: *L*
|mpl|
libs/mpl/doc/src/refmanual/
ASSERT.rst: *C* *L*
ASSERT_MSG.rst: *C* *L*
ASSERT_NOT.rst: *C* *L*
ASSERT_RELATION.rst: *C* *L*
AUX_LAMBDA_SUPPORT.rst: *C* *L*
Acknowledgements.rst: *C* *L*
Algorithms-Iteration.rst: *C* *L*
Algorithms-Querying.rst: *C* *L*
Algorithms-Runtime.rst: *C* *L*
Algorithms-Transformation.rst: *C* *L*
Algorithms.rst: *C* *L*
AssociativeSequence.rst: *C* *L*
BackExtensibleSequence.rst: *C* *L*
BidirectionalIterator.rst: *C* *L*
BidirectionalSequence.rst: *C* *L*
CFG_NO_HAS_XXX.rst: *C* *L*
CFG_NO_PREPROCESSED.rst: *C* *L*
Categorized.rst: *C* *L*
Data.rst: *C* *L*
ExtensibleAssociativeSeq.rst: *C* *L*
ExtensibleSequence.rst: *C* *L*
ForwardIterator.rst: *C* *L*
ForwardSequence.rst: *C* *L*
FrontExtensibleSequence.rst: *C* *L*
HAS_XXX_TRAIT_DEF.rst: *C* *L*
HAS_XXX_TRAIT_NAMED_DEF.rst: *C* *L*
Inserter.rst: *C* *L*
IntegralConstant.rst: *C* *L*
IntegralSequenceWrapper.rst: *C* *L*
Iterators-Concepts.rst: *C* *L*
Iterators-Metafunctions.rst: *C* *L*
Iterators.rst: *C* *L*
LIMIT_LIST_SIZE.rst: *C* *L*
LIMIT_MAP_SIZE.rst: *C* *L*
LIMIT_METAFUNCTION_ARITY.rst: *C* *L*
LIMIT_SET_SIZE.rst: *C* *L*
LIMIT_UNROLLING.rst: *C* *L*
LIMIT_VECTOR_SIZE.rst: *C* *L*
LambdaExpression.rst: *C* *L*
Macros-Asserts.rst: *C* *L*
Macros-Configuration.rst: *C* *L*
Macros.rst: *C* *L*
Metafunction.rst: *C* *L*
MetafunctionClass.rst: *C* *L*
Metafunctions-Arithmetic.rst: *C* *L*
Metafunctions-Bitwise.rst: *C* *L*
Metafunctions-Comparisons.rst: *C* *L*
Metafunctions-Composition.rst: *C* *L*
Metafunctions-Conditional.rst: *C* *L*
Metafunctions-Invocation.rst: *C* *L*
Metafunctions-Logical.rst: *C* *L*
Metafunctions-Trivial.rst: *C* *L*
Metafunctions-Type.rst: *C* *L*
Metafunctions.rst: *C* *L*
NumericMetafunction.rst: *C* *L*
PlaceholderExpression.rst: *C* *L*
Placeholders.rst: *C* *L*
RandomAccessIterator.rst: *C* *L*
RandomAccessSequence.rst: *C* *L*
ReversibleAlgorithm.rst: *C* *L*
Sequences-Classes.rst: *C* *L*
Sequences-Concepts.rst: *C* *L*
Sequences-Intrinsic.rst: *C* *L*
Sequences-Views.rst: *C* *L*
Sequences.rst: *C* *L*
TagDispatchedMetafunction.rst: *C* *L*
TrivialMetafunction.rst: *C* *L*
VariadicSequence.rst: *C* *L*
accumulate.rst: *C* *L*
advance.rst: *C* *L*
always.rst: *C* *L*
and_.rst: *C* *L*
apply.rst: *C* *L*
apply_wrap.rst: *C* *L*
arg.rst: *C* *L*
at.rst: *C* *L*
at_c.rst: *C* *L*
back.rst: *C* *L*
back_inserter.rst: *C* *L*
begin.rst: *C* *L*
bind.rst: *C* *L*
bitand_.rst: *C* *L*
bitor_.rst: *C* *L*
bitxor_.rst: *C* *L*
bool_.rst: *C* *L*
clear.rst: *C* *L*
contains.rst: *C* *L*
copy.rst: *C* *L*
copy_if.rst: *C* *L*
count.rst: *C* *L*
count_if.rst: *C* *L*
deque.rst: *C* *L*
deref.rst: *C* *L*
distance.rst: *C* *L*
divides.rst: *C* *L*
empty.rst: *C* *L*
empty_base.rst: *C* *L*
empty_sequence.rst: *C* *L*
end.rst: *C* *L*
equal.rst: *C* *L*
equal_to.rst: *C* *L*
erase.rst: *C* *L*
erase_key.rst: *C* *L*
eval_if.rst: *C* *L*
eval_if_c.rst: *C* *L*
filter_view.rst: *C* *L*
find.rst: *C* *L*
find_if.rst: *C* *L*
fold.rst: *C* *L*
for_each.rst: *C* *L*
front.rst: *C* *L*
front_inserter.rst: *C* *L*
greater.rst: *C* *L*
greater_equal.rst: *C* *L*
has_key.rst: *C* *L*
identity.rst: *C* *L*
if_.rst: *C* *L*
if_c.rst: *C* *L*
inherit.rst: *C* *L*
inherit_linearly.rst: *C* *L*
insert.rst: *C* *L*
insert_range.rst: *C* *L*
inserter_.rst: *C* *L*
int_.rst: *C* *L*
integral_c.rst: *C* *L*
is_sequence.rst: *C* *L*
iter_fold.rst: *C* *L*
iter_fold_if.rst: *C* *L*
iterator_category.rst: *C* *L*
iterator_range.rst: *C* *L*
joint_view.rst: *C* *L*
key_type.rst: *C* *L*
lambda.rst: *C* *L*
less.rst: *C* *L*
less_equal.rst: *C* *L*
list.rst: *C* *L*
list_c.rst: *C* *L*
long_.rst: *C* *L*
lower_bound.rst: *C* *L*
map.rst: *C* *L*
max.rst: *C* *L*
max_element.rst: *C* *L*
min.rst: *C* *L*
min_element.rst: *C* *L*
minus.rst: *C* *L*
modulus.rst: *C* *L*
multiplies.rst: *C* *L*
negate.rst: *C* *L*
next.rst: *C* *L*
not_.rst: *C* *L*
not_equal_to.rst: *C* *L*
numeric_cast.rst: *C* *L*
or_.rst: *C* *L*
order.rst: *C* *L*
pair.rst: *C* *L*
partition.rst: *C* *L*
plus.rst: *C* *L*
pop_back.rst: *C* *L*
pop_front.rst: *C* *L*
preface.rst: *C* *L*
prior.rst: *C* *L*
protect.rst: *C* *L*
push_back.rst: *C* *L*
push_front.rst: *C* *L*
quote.rst: *C* *L*
range_c.rst: *C* *L*
refmanual.py: *C* *L*
remove.rst: *C* *L*
remove_if.rst: *C* *L*
replace.rst: *C* *L*
replace_if.rst: *C* *L*
reverse.rst: *C* *L*
reverse_copy.rst: *C* *L*
reverse_copy_if.rst: *C* *L*
reverse_fold.rst: *C* *L*
reverse_iter_fold.rst: *C* *L*
reverse_partition.rst: *C* *L*
reverse_remove.rst: *C* *L*
reverse_remove_if.rst: *C* *L*
reverse_replace.rst: *C* *L*
reverse_replace_if.rst: *C* *L*
reverse_stable_partition.rst: *C* *L*
reverse_transform.rst: *C* *L*
reverse_unique.rst: *C* *L*
sequence_tag.rst: *C* *L*
set.rst: *C* *L*
set_c.rst: *C* *L*
shift_left.rst: *C* *L*
shift_right.rst: *C* *L*
single_view.rst: *C* *L*
size.rst: *C* *L*
size_t.rst: *C* *L*
sizeof_.rst: *C* *L*
sort.rst: *C* *L*
stable_partition.rst: *C* *L*
terminology.rst: *C* *L*
times.rst: *C* *L*
transform.rst: *C* *L*
transform_view.rst: *C* *L*
unique.rst: *C* *L*
unpack_args.rst: *C* *L*
upper_bound.rst: *C* *L*
value_type.rst: *C* *L*
vector.rst: *C* *L*
vector_c.rst: *C* *L*
void_.rst: *C* *L*
zip_view.rst: *C* *L*
libs/mpl/doc/
style.css: *L*
libs/mpl/test/
Jamfile.v2: *C* *L*
|multi_array|
libs/multi_array/doc/
iterator_categories.html: *C* *L*
reference.html: *L*
libs/multi_array/doc/xml/
MultiArray.xml: *C* *L*
const_multi_array_ref.xml: *C* *L*
multi_array.xml: *C* *L*
multi_array_ref.xml: *C* *L*
reference.xml: *L*
libs/multi_array/test/
Jamfile.v2: *L*
|numeric|
boost/numeric/ublas/
banded.hpp: *L*
blas.hpp: *L*
boost/numeric/ublas/detail/
concepts.hpp: *L*
config.hpp: *L*
definitions.hpp: *L*
documentation.hpp: *L*
duff.hpp: *L*
iterator.hpp: *L*
matrix_assign.hpp: *L*
raw.hpp: *L*
temporary.hpp: *L*
vector_assign.hpp: *L*
boost/numeric/ublas/
exception.hpp: *L*
expression_types.hpp: *L*
functional.hpp: *L*
fwd.hpp: *L*
hermitian.hpp: *L*
io.hpp: *L*
lu.hpp: *L*
matrix.hpp: *L*
matrix_expression.hpp: *L*
matrix_proxy.hpp: *L*
matrix_sparse.hpp: *L*
operation.hpp: *L*
operation_blocked.hpp: *L*
operation_sparse.hpp: *L*
storage.hpp: *L*
storage_sparse.hpp: *L*
symmetric.hpp: *L*
traits.hpp: *L*
triangular.hpp: *L*
vector.hpp: *L*
vector_expression.hpp: *L*
vector_of_vector.hpp: *L*
vector_proxy.hpp: *L*
vector_sparse.hpp: *L*
libs/numeric/conversion/test/
Jamfile.v2: *C* *L*
test_helpers.cpp: *C*
test_helpers2.cpp: *C*
test_helpers3.cpp: *C*
traits_test.cpp: *C*
udt_example_0.cpp: *C*
udt_support_test.cpp: *C*
libs/numeric/interval/doc/
checking.htm: *L*
comparisons.htm: *L*
examples.htm: *L*
guide.htm: *L*
includes.htm: *L*
interval.htm: *L*
numbers.htm: *L*
policies.htm: *L*
rounding.htm: *L*
todo.htm: *L*
libs/numeric/ublas/bench1/
bench1.cpp: *L*
bench1.hpp: *L*
bench11.cpp: *L*
bench12.cpp: *L*
bench13.cpp: *L*
libs/numeric/ublas/bench2/
bench2.cpp: *L*
bench2.hpp: *L*
bench21.cpp: *L*
bench22.cpp: *L*
bench23.cpp: *L*
libs/numeric/ublas/bench3/
bench3.cpp: *L*
bench3.hpp: *L*
bench31.cpp: *L*
bench32.cpp: *L*
bench33.cpp: *L*
libs/numeric/ublas/bench4/
bench4.cpp: *L*
bench41.cpp: *L*
bench42.cpp: *L*
bench43.cpp: *L*
libs/numeric/ublas/doc/
Release_notes.txt: *C* *L*
array_adaptor.htm: *C* *L*
banded.htm: *L*
blas.htm: *L*
bounded_array.htm: *C* *L*
container_concept.htm: *L*
doxygen.css: *C* *L*
expression_concept.htm: *L*
hermitian.htm: *L*
index.htm: *L*
iterator_concept.htm: *L*
matrix.htm: *L*
matrix_expression.htm: *L*
matrix_proxy.htm: *L*
matrix_sparse.htm: *L*
operations_overview.htm: *L*
overview.htm: *L*
products.htm: *L*
range.htm: *C* *L*
libs/numeric/ublas/doc/samples/
banded_adaptor.cpp: *L*
banded_matrix.cpp: *L*
bounded_array.cpp: *L*
compressed_matrix.cpp: *L*
compressed_vector.cpp: *L*
coordinate_matrix.cpp: *L*
coordinate_vector.cpp: *L*
hermitian_adaptor.cpp: *L*
hermitian_matrix.cpp: *L*
identity_matrix.cpp: *L*
map_array.cpp: *L*
mapped_matrix.cpp: *L*
mapped_vector.cpp: *L*
matrix.cpp: *L*
matrix_binary.cpp: *L*
matrix_binary_scalar.cpp: *L*
matrix_column.cpp: *L*
matrix_column_project.cpp: *L*
matrix_matrix_binary.cpp: *L*
matrix_matrix_solve.cpp: *L*
matrix_range.cpp: *L*
matrix_range_project.cpp: *L*
matrix_row.cpp: *L*
matrix_row_project.cpp: *L*
matrix_slice.cpp: *L*
matrix_slice_project.cpp: *L*
matrix_unary.cpp: *L*
matrix_vector_binary.cpp: *L*
matrix_vector_range.cpp: *L*
matrix_vector_slice.cpp: *L*
matrix_vector_solve.cpp: *L*
range.cpp: *L*
slice.cpp: *L*
symmetric_adaptor.cpp: *L*
symmetric_matrix.cpp: *L*
triangular_adaptor.cpp: *L*
triangular_matrix.cpp: *L*
unbounded_array.cpp: *L*
unit_vector.cpp: *L*
vector.cpp: *L*
vector_binary.cpp: *L*
vector_binary_outer.cpp: *L*
vector_binary_redux.cpp: *L*
vector_binary_scalar.cpp: *L*
vector_range.cpp: *L*
vector_range_project.cpp: *L*
vector_slice.cpp: *L*
vector_slice_project.cpp: *L*
vector_unary.cpp: *L*
vector_unary_redux.cpp: *L*
zero_matrix.cpp: *L*
zero_vector.cpp: *L*
libs/numeric/ublas/doc/
storage_concept.htm: *C* *L*
storage_sparse.htm: *L*
symmetric.htm: *L*
triangular.htm: *L*
types_overview.htm: *L*
ublas.css: *C* *L*
unbounded_array.htm: *C* *L*
vector.htm: *L*
vector_expression.htm: *L*
vector_proxy.htm: *L*
vector_sparse.htm: *L*
libs/numeric/ublas/test/
README: *C* *L*
concepts.cpp: *L*
test1.cpp: *L*
test1.hpp: *L*
test11.cpp: *L*
test12.cpp: *L*
test13.cpp: *L*
test2.cpp: *L*
test2.hpp: *L*
test21.cpp: *L*
test22.cpp: *L*
test23.cpp: *L*
test3.cpp: *L*
test3.hpp: *L*
test31.cpp: *L*
test32.cpp: *L*
test33.cpp: *L*
test4.cpp: *L*
test4.hpp: *L*
test42.cpp: *L*
test43.cpp: *L*
test5.cpp: *L*
test5.hpp: *L*
test52.cpp: *L*
test53.cpp: *L*
test6.cpp: *L*
test6.hpp: *L*
test62.cpp: *L*
test63.cpp: *L*
test7.cpp: *L*
test7.hpp: *L*
test71.cpp: *L*
test72.cpp: *L*
test73.cpp: *L*
|optional|
libs/optional/test/
Jamfile.v2: *L*
|people|
people/
aleksey_gurtovoy.htm: *C* *L*
andreas_huber.html: *C* *L*
beman_dawes.html: *C* *L*
darin_adler.htm: *C* *L*
daryle_walker.html: *C* *L*
dietmar_kuehl.htm: *C* *L*
doug_gregor.html: *C* *L*
ed_brey.htm: *C* *L*
eric_friedman.htm: *C* *L*
fernando_cacciola.html: *C* *L*
gary_powell.htm: *C* *L*
gennadiy_rozental.htm: *C* *L*
greg_colvin.htm: *C* *L*
hartmut_kaiser.htm: *C* *L*
herve_bronnimann.htm: *C* *L*
howard_hinnant.htm: *C* *L*
hubert_holin.html: *C* *L*
jaakko_jarvi.htm: *C* *L*
jeff_garland.html: *C* *L*
jens_maurer.htm: *C* *L*
jeremy_siek.htm: *C* *L*
joaquin_lopez.htm: *C* *L*
joel_de_guzman.htm: *C* *L*
john_maddock.htm: *C* *L*
jonathan_turkanis.htm: *C* *L*
kevlin_henney.htm: *C* *L*
liequan_lee.htm: *C* *L*
mac_murrett.htm: *C* *L*
mark_rodgers.htm: *C* *L*
mat_marcus.htm: *C* *L*
paul_mensonides.htm: *C* *L*
paul_moore.htm: *C* *L*
pavol_droba.htm: *C* *L*
people.htm: *C* *L*
peter_dimov.htm: *C* *L*
ralf_w_grosse_kunstleve.htm: *C* *L*
rene_rivera.htm: *C* *L*
robert_ramey.htm: *C* *L*
ronald_garcia.htm: *C* *L*
samuel_krempp.htm: *C* *L*
thomas_witt.html: *C* *L*
thorsten_ottosen.html: *C* *L*
vesa_karvonen.htm: *C* *L*
vladimir_prus.htm: *C* *L*
william_kempf.htm: *C* *L*
|pool|
boost/pool/detail/
pool_construct.bat: *L*
pool_construct.sh: *L*
pool_construct_simple.bat: *L*
pool_construct_simple.sh: *L*
libs/pool/
TODO.txt: *C* *L*
libs/pool/doc/
concepts.html: *L*
copyright.html: *L*
libs/pool/doc/implementation/
alignment.html: *L*
ct_gcd_lcm.html: *L*
for.html: *L*
gcd_lcm.html: *L*
guard.html: *L*
mutex.html: *L*
object_pool.html: *L*
pool.html: *L*
pool_alloc.html: *L*
pool_construct.html: *L*
simple_segregated_storage.html: *L*
singleton.html: *L*
singleton_pool.html: *L*
libs/pool/doc/
index.html: *L*
interfaces.html: *L*
libs/pool/doc/interfaces/
object_pool.html: *L*
pool.html: *L*
pool_alloc.html: *L*
simple_segregated_storage.html: *L*
singleton_pool.html: *L*
user_allocator.html: *L*
libs/pool/doc/
pool.css: *L*
|program_options|
boost/program_options/detail/
utf8_codecvt_facet.hpp: *L*
libs/program_options/build/
Jamfile.v2: *C* *L*
libs/program_options/doc/
Jamfile.v2: *C* *L*
acknowledgements.xml: *C* *L*
changes.xml: *C* *L*
design.xml: *C* *L*
glossary.xml: *C* *L*
howto.xml: *C* *L*
overview.xml: *C* *L*
post_review_plan.txt: *C* *L*
todo.txt: *C* *L*
tutorial.xml: *C* *L*
libs/program_options/example/
Jamfile.v2: *C* *L*
libs/program_options/test/
Jamfile.v2: *C* *L*
program_options_size_test.py: *C* *L*
ucs2.txt: *C* *L*
utf8.txt: *C* *L*
winmain.py: *C* *L*
|property_map|
libs/property_map/
LvaluePropertyMap.html: *L*
ReadWritePropertyMap.html: *L*
ReadablePropertyMap.html: *L*
WritablePropertyMap.html: *L*
associative_property_map.html: *L*
const_assoc_property_map.html: *L*
libs/property_map/doc/
dynamic_property_map.html: *C* *L*
dynamic_property_map.rst: *C* *L*
libs/property_map/
example2.cpp: *L*
identity_property_map.html: *L*
iterator_property_map.html: *L*
property_map.html: *L*
vector_property_map.html: *L*
|ptr_container|
libs/ptr_container/doc/
Jamfile.v2: *C* *L*
associative_ptr_container.html: *L*
associative_ptr_container.rst: *L*
comp.sh: *C* *L*
comp_all.sh: *C* *L*
comp_assoc_ptr_container.sh: *C* *L*
comp_conventions.sh: *C* *L*
comp_examples.sh: *C* *L*
comp_faq.sh: *C* *L*
comp_guidelines.sh: *C* *L*
comp_headers.sh: *C* *L*
comp_indirect_fun.sh: *C* *L*
comp_ptr_array.sh: *C* *L*
comp_ptr_container.sh: *C* *L*
comp_ptr_deque.sh: *C* *L*
comp_ptr_list.sh: *C* *L*
comp_ptr_map.sh: *C* *L*
comp_ptr_map_adapter.sh: *C* *L*
comp_ptr_multimap.sh: *C* *L*
comp_ptr_multimap_adapter.sh: *C* *L*
comp_ptr_multiset.sh: *C* *L*
comp_ptr_multiset_adapter.sh: *C* *L*
comp_ptr_sequence_adapter.sh: *C* *L*
comp_ptr_set.sh: *C* *L*
comp_ptr_set_adapter.sh: *C* *L*
comp_ptr_vector.sh: *C* *L*
comp_reference.sh: *C* *L*
comp_rever_ptr_container.sh: *C* *L*
comp_tutorial.sh: *C* *L*
conventions.html: *L*
conventions.rst: *L*
default.css: *L*
examples.rst: *L*
faq.html: *L*
faq.rst: *L*
guidelines.html: *L*
guidelines.rst: *L*
headers.html: *L*
headers.rst: *L*
indirect_fun.html: *L*
indirect_fun.rst: *L*
intro.xml: *C* *L*
ptr_array.html: *L*
ptr_array.rst: *L*
ptr_container.xml: *L*
ptr_deque.html: *L*
ptr_deque.rst: *L*
ptr_list.html: *L*
ptr_list.rst: *L*
ptr_map.html: *L*
ptr_map.rst: *L*
ptr_map_adapter.html: *L*
ptr_map_adapter.rst: *L*
ptr_multimap.html: *L*
ptr_multimap.rst: *L*
ptr_multimap_adapter.html: *L*
ptr_multimap_adapter.rst: *L*
ptr_multiset.html: *L*
ptr_multiset.rst: *L*
ptr_multiset_adapter.html: *L*
ptr_multiset_adapter.rst: *L*
ptr_sequence_adapter.html: *L*
ptr_sequence_adapter.rst: *L*
ptr_set.html: *L*
ptr_set.rst: *L*
ptr_set_adapter.html: *L*
ptr_set_adapter.rst: *L*
ptr_vector.html: *L*
ptr_vector.rst: *L*
reference.html: *L*
reference.rst: *L*
reversible_ptr_container.html: *L*
reversible_ptr_container.rst: *L*
style.css: *C* *L*
todo.txt: *C* *L*
tutorial.html: *L*
tutorial.rst: *L*
libs/ptr_container/test/
Jamfile.v2: *C* *L*
sequence_point.cpp: *C* *L*
|python|
libs/python/doc/
internals.html: *L*
internals.rst: *L*
libs/python/test/
operators_wrapper.cpp: *C* *L*
operators_wrapper.py: *C* *L*
|quickbook|
tools/quickbook/doc/
Jamfile.v2: *C* *L*
tools/quickbook/doc/html/quickbook/
change_log.html: *L*
intro.html: *L*
ref.html: *L*
syntax.html: *L*
tools/quickbook/doc/html/quickbook/syntax/
block.html: *L*
comments.html: *L*
phrase.html: *L*
tools/quickbook/
index.html: *C* *L*
|random|
libs/random/
index.html: *C* *L*
nondet_random.html: *C* *L*
random-concepts.html: *C* *L*
random-distributions.html: *C* *L*
random-generators.html: *C* *L*
random-misc.html: *C* *L*
random-performance.html: *C* *L*
random-variate.html: *C* *L*
libs/random/test/
Jamfile.v2: *C* *L*
libs/random/
wg21-proposal.html: *C* *L*
|range|
libs/range/doc/
boost_range.html: *L*
example.cpp: *C* *L*
examples.html: *L*
faq.html: *L*
headers.html: *L*
history_ack.html: *L*
intro.html: *L*
portability.html: *L*
range.html: *L*
style.css: *C* *L*
style.html: *L*
utility_class.html: *L*
libs/range/test/
TODO: *C* *L*
compat1.cpp: *C* *L*
|rational|
boost/
rational.hpp: *L*
libs/rational/
index.html: *L*
rational.html: *L*
rational_example.cpp: *L*
rational_test.cpp: *L*
|regex|
libs/regex/build/
gcc-shared.mak: *C* *L*
libs/regex/example/timer/
input_script.txt: *C* *L*
|regression|
tools/regression/build/
Jamfile.v2: *C* *L*
tools/regression/detail/
tiny_xml_test.txt: *C* *L*
tools/regression/
index.htm: *C* *L*
run_tests.sh: *C* *L*
tools/regression/test/
test.bat: *C* *L*
tools/regression/xsl_reports/
empty_expected_results.xml: *C* *L*
tools/regression/xsl_reports/runner/
__init__.py: *C* *L*
default.css: *L*
instructions.html: *L*
instructions.rst: *C* *L*
tools/regression/xsl_reports/test/
common.py: *C* *L*
expected_results.xml: *C* *L*
generate_test_results.py: *C* *L*
generate_test_results_v1.py: *C* *L*
restrict_to_library.xsl: *C* *L*
run_notes_regression.py: *C* *L*
run_v1.py: *C* *L*
test.py: *C* *L*
test_boost_wide_report.py: *C* *L*
tools/regression/xsl_reports/
test_results.xsd: *C* *L*
tools/regression/xsl_reports/utils/
__init__.py: *C* *L*
accept_args.py: *C* *L*
char_translation_table.py: *C* *L*
check_existance.py: *C* *L*
checked_system.py: *C* *L*
libxslt.py: *C* *L*
log.py: *C* *L*
makedirs.py: *C* *L*
send_mail.py: *C* *L*
sourceforge.py: *C* *L*
tar.py: *C* *L*
zip.py: *C* *L*
tools/regression/xsl_reports/xsl/v2/
expected_to_1_33_format.xsl: *C* *L*
|release|
tools/release/
utils.py: *C* *L*
|serialization|
libs/serialization/doc/
style.css: *C* *L*
libs/serialization/example/
demo_output.txt: *C* *L*
demo_save.xml: *C* *L*
demofile.txt: *C* *L*
libs/serialization/test/
run_archive_test.bat: *C* *L*
runtest.bat: *C* *L*
runtest.sh: *C* *L*
libs/serialization/vc7ide/
readme.txt: *C* *L*
|smart_ptr|
libs/smart_ptr/
compatibility.htm: *L*
enable_shared_from_this.html: *L*
intrusive_ptr.html: *L*
scoped_array.htm: *L*
scoped_ptr.htm: *L*
shared_array.htm: *L*
shared_ptr.htm: *L*
smart_ptr.htm: *L*
smarttests.htm: *L*
sp_techniques.html: *L*
libs/smart_ptr/test/
Jamfile.v2: *L*
libs/smart_ptr/
weak_ptr.htm: *L*
|test|
boost/test/utils/runtime/cla/detail/
argument_value_usage.hpp: *L*
libs/test/example/
unit_test_example_01.cpp: *C* *L*
libs/test/test/auto-link-test/
run_bjam.bat: *C* *L*
|timer|
libs/timer/
timer.htm: *L*
|tokenizer|
libs/tokenizer/
char_delimiters_separator.htm: *L*
char_separator.htm: *L*
escaped_list_separator.htm: *L*
index.html: *L*
introduc.htm: *L*
offset_separator.htm: *L*
token_iterator.htm: *L*
tokenizer.htm: *L*
tokenizerfunction.htm: *L*
|tr1|
boost/tr1/
tuple.hpp: *C* *L*
|tuple|
libs/tuple/doc/
design_decisions_rationale.html: *L*
tuple_advanced_interface.html: *L*
tuple_users_guide.html: *L*
libs/tuple/test/
README: *C* *L*
|utility|
boost/
shared_container_iterator.hpp: *L*
libs/utility/
Assignable.html: *L*
Collection.html: *L*
CopyConstructible.html: *L*
LessThanComparable.html: *L*
MultiPassInputIterator.html: *L*
OptionalPointee.html: *L*
assert.html: *L*
call_traits.htm: *L*
checked_delete.html: *L*
compressed_pair.htm: *L*
current_function.html: *L*
enable_if.html: *L*
generator_iterator.htm: *C* *L*
libs/utility/test/
Jamfile.v2: *L*
libs/utility/
throw_exception.html: *L*
utility.htm: *L*
value_init.htm: *L*
value_init_test.cpp: *C*
value_init_test_fail1.cpp: *C*
value_init_test_fail2.cpp: *C*
value_init_test_fail3.cpp: *C*
|variant|
libs/variant/doc/
Jamfile.v2: *C* *L*
biblio.xml: *C* *L*
design.xml: *C* *L*
introduction.xml: *C* *L*
misc.xml: *C* *L*
libs/variant/doc/reference/
apply_visitor.xml: *C* *L*
bad_visit.xml: *C* *L*
concepts.xml: *C* *L*
get.xml: *C* *L*
recursive_variant.xml: *C* *L*
recursive_wrapper.xml: *C* *L*
reference.xml: *C* *L*
static_visitor.xml: *C* *L*
variant.xml: *C* *L*
variant_fwd.xml: *C* *L*
visitor_ptr.xml: *C* *L*
libs/variant/doc/tutorial/
advanced.xml: *C* *L*
basic.xml: *C* *L*
tutorial.xml: *C* *L*
libs/variant/doc/
variant.xml: *L*
libs/variant/
index.html: *C* *L*
libs/variant/test/
Jamfile.v2: *L*
1
0
[ Unchanged from Monday ]
Bug count: 88
13 dgregor
9 jsiek
8 vladimir_prus
6 beman_dawes
5 shammah
5 nesotto
4 samuel_k
4 nobody
4 grafik
4 az_sw_dude
3 jbandela
3 djowel
2 mistevens
2 johnmaddock
2 jmaurer
2 hubert_holin
2 alnsn
2 agurtovoy
1 urzuga
1 turkanis
1 speedsnail
1 mclow
1 fcacciola
1 ebf
1 dlwalker
1 daniel_wallin
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: mpl::remove compile error with gcc 4.1.0
Bug #: 1453180
<http://sourceforge.net/tracker/index.php?func=detail&aid=1453180&group_id=7…>
Assignee: agurtovoy <http://sourceforge.net/users/agurtovoy/>
Summary: documentation mistake
Bug #: 1497329
<http://sourceforge.net/tracker/index.php?func=detail&aid=1497329&group_id=7…>
Assignee: alnsn <http://sourceforge.net/users/alnsn/>
Summary: lexical_cast & pure virtual functions & VC 8 STL
Bug #: 1358600
<http://sourceforge.net/tracker/index.php?func=detail&aid=1358600&group_id=7…>
Assignee: alnsn <http://sourceforge.net/users/alnsn/>
Summary: boost::any - typeid comparison across shared boundaries
Bug #: 1577259
<http://sourceforge.net/tracker/index.php?func=detail&aid=1577259&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: wrong usage of ios_base::narrow
Bug #: 989487
<http://sourceforge.net/tracker/index.php?func=detail&aid=989487&group_id=75…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: date_time type conversion warning
Bug #: 1069225
<http://sourceforge.net/tracker/index.php?func=detail&aid=1069225&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: from_ftime incorrectly processes FILETIME filled with zeros
Bug #: 1471025
<http://sourceforge.net/tracker/index.php?func=detail&aid=1471025&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: operator<< for gregorian::date_duration not found
Bug #: 1498778
<http://sourceforge.net/tracker/index.php?func=detail&aid=1498778&group_id=7…>
Assignee: 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: GraphViz reader ignores graph properties
Bug #: 1567797
<http://sourceforge.net/tracker/index.php?func=detail&aid=1567797&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: ebf <http://sourceforge.net/users/ebf/>
Summary: ambiguous overloads in boost::variant source code
Bug #: 1456780
<http://sourceforge.net/tracker/index.php?func=detail&aid=1456780&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: grafik <http://sourceforge.net/users/grafik/>
Summary: boost jam problem with parallel builds
Bug #: 1234224
<http://sourceforge.net/tracker/index.php?func=detail&aid=1234224&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: boost.build needs fixes for HP/UX
Bug #: 1395924
<http://sourceforge.net/tracker/index.php?func=detail&aid=1395924&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Wrong .bat name in vc-8_0-x86_amd64-tools.jam
Bug #: 1548427
<http://sourceforge.net/tracker/index.php?func=detail&aid=1548427&group_id=7…>
Assignee: grafik <http://sourceforge.net/users/grafik/>
Summary: Generated files '@()' don't work in regular expressions.
Bug #: 1549607
<http://sourceforge.net/tracker/index.php?func=detail&aid=1549607&group_id=7…>
Assignee: hubert_holin <http://sourceforge.net/users/hubert_holin/>
Summary: Cannot compile octonion_test.cpp because of bug in sinc.hpp
Bug #: 751289
<http://sourceforge.net/tracker/index.php?func=detail&aid=751289&group_id=75…>
Assignee: hubert_holin <http://sourceforge.net/users/hubert_holin/>
Summary: octonion documentation bug
Bug #: 1499814
<http://sourceforge.net/tracker/index.php?func=detail&aid=1499814&group_id=7…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: Compiler error for tokenizer on Solaris
Bug #: 976241
<http://sourceforge.net/tracker/index.php?func=detail&aid=976241&group_id=75…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: token_iterator::at_end() result is inversed
Bug #: 1338326
<http://sourceforge.net/tracker/index.php?func=detail&aid=1338326&group_id=7…>
Assignee: jbandela <http://sourceforge.net/users/jbandela/>
Summary: bug in char_separator
Bug #: 1510041
<http://sourceforge.net/tracker/index.php?func=detail&aid=1510041&group_id=7…>
Assignee: jmaurer <http://sourceforge.net/users/jmaurer/>
Summary: Diff in state of mersenne_twister gen between GCC3.41 & CW9
Bug #: 1115124
<http://sourceforge.net/tracker/index.php?func=detail&aid=1115124&group_id=7…>
Assignee: jmaurer <http://sourceforge.net/users/jmaurer/>
Summary: uniform_01 copies engine instead of using a reference
Bug #: 1464566
<http://sourceforge.net/tracker/index.php?func=detail&aid=1464566&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: Adding boost::is_complex to type_traits.hpp
Bug #: 1315712
<http://sourceforge.net/tracker/index.php?func=detail&aid=1315712&group_id=7…>
Assignee: johnmaddock <http://sourceforge.net/users/johnmaddock/>
Summary: Crash on exit VC8.0
Bug #: 1589807
<http://sourceforge.net/tracker/index.php?func=detail&aid=1589807&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: invalid result for File Dependency Examp
Bug #: 551110
<http://sourceforge.net/tracker/index.php?func=detail&aid=551110&group_id=75…>
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: g++ v3.2.3 inker error for read_graphviz ih boost v1.33.1
Bug #: 1378907
<http://sourceforge.net/tracker/index.php?func=detail&aid=1378907&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: Calling subgraph::global_to_local on a root graph
Bug #: 1444293
<http://sourceforge.net/tracker/index.php?func=detail&aid=1444293&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: 'edmunds_karps'
Bug #: 1497880
<http://sourceforge.net/tracker/index.php?func=detail&aid=1497880&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: boost::none redifinition
Bug #: 1571176
<http://sourceforge.net/tracker/index.php?func=detail&aid=1571176&group_id=7…>
Assignee: jsiek <http://sourceforge.net/users/jsiek/>
Summary: boost::none redifinition
Bug #: 1571188
<http://sourceforge.net/tracker/index.php?func=detail&aid=1571188&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: does uBLAS provide some advanse methods
Bug #: 1516834
<http://sourceforge.net/tracker/index.php?func=detail&aid=1516834&group_id=7…>
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: nobody
Summary: Shmem serious bugs
Bug #: 1518563
<http://sourceforge.net/tracker/index.php?func=detail&aid=1518563&group_id=7…>
Assignee: nobody
Summary: Changing size of memory-mapped file on Windows
Bug #: 1532684
<http://sourceforge.net/tracker/index.php?func=detail&aid=1532684&group_id=7…>
Assignee: nobody
Summary: optional documentation
Bug #: 1587134
<http://sourceforge.net/tracker/index.php?func=detail&aid=1587134&group_id=7…>
Assignee: nobody
Summary: 'Bug' in comment
Bug #: 1588359
<http://sourceforge.net/tracker/index.php?func=detail&aid=1588359&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: Borland compiler error with Pool, boost::pool_allocator
Bug #: 988124
<http://sourceforge.net/tracker/index.php?func=detail&aid=988124&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: speedsnail <http://sourceforge.net/users/speedsnail/>
Summary: Threads not working in parallel
Bug #: 1589911
<http://sourceforge.net/tracker/index.php?func=detail&aid=1589911&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: 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: 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…>
--
-- 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
[ Down from 15 on Monday ]
Patch count: 13
3 vladimir_prus
3 nobody
1 turkanis
1 rogeeff
1 rgarcia
1 ramey
1 johnmaddock
1 dlwalker
1 agurtovoy
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: 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: 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: nobody
Summary: [thread] evc4 port
Bug #: 1498914
<http://sourceforge.net/tracker/index.php?func=detail&aid=1498914&group_id=7…>
Assignee: nobody
Summary: [mpl] evc4 port
Bug #: 1583396
<http://sourceforge.net/tracker/index.php?func=detail&aid=1583396&group_id=7…>
Assignee: nobody
Summary: [test] evc4 issue with SEH support
Bug #: 1583399
<http://sourceforge.net/tracker/index.php?func=detail&aid=1583399&group_id=7…>
Assignee: ramey <http://sourceforge.net/users/ramey/>
Summary: [serialization] comment out unused variables
Bug #: 1506528
<http://sourceforge.net/tracker/index.php?func=detail&aid=1506528&group_id=7…>
Assignee: rgarcia <http://sourceforge.net/users/rgarcia/>
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: 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: 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
[ Down from 54 on Monday ]
Support count: 52
26 nobody
4 grafik
3 vladimir_prus
3 jsiek
3 djowel
2 turkanis
2 mistevens
2 johnmaddock
2 az_sw_dude
1 urzuga
1 speedsnail
1 samuel_k
1 jbandela
1 fcacciola
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: support new 2007 DST rules for timezone db
Bug #: 1471723
<http://sourceforge.net/tracker/index.php?func=detail&aid=1471723&group_id=7…>
Assignee: az_sw_dude <http://sourceforge.net/users/az_sw_dude/>
Summary: new timezone db file for #1471723 - 2007 DST support
Bug #: 1478619
<http://sourceforge.net/tracker/index.php?func=detail&aid=1478619&group_id=7…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: Spirit does not compile on aCC
Bug #: 1098070
<http://sourceforge.net/tracker/index.php?func=detail&aid=1098070&group_id=7…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: spirit
Bug #: 1481295
<http://sourceforge.net/tracker/index.php?func=detail&aid=1481295&group_id=7…>
Assignee: djowel <http://sourceforge.net/users/djowel/>
Summary: How to avoid compilation warning?
Bug #: 1590783
<http://sourceforge.net/tracker/index.php?func=detail&aid=1590783&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: 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: 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: 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: regex - perl syntax affects what gets matched
Bug #: 1519824
<http://sourceforge.net/tracker/index.php?func=detail&aid=1519824&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: mistevens <http://sourceforge.net/users/mistevens/>
Summary: ublas extendability1
Bug #: 1091151
<http://sourceforge.net/tracker/index.php?func=detail&aid=1091151&group_id=7…>
Assignee: mistevens <http://sourceforge.net/users/mistevens/>
Summary: ublas extendability 2
Bug #: 1091153
<http://sourceforge.net/tracker/index.php?func=detail&aid=1091153&group_id=7…>
Assignee: nobody
Summary: configure problem with aCC
Bug #: 811040
<http://sourceforge.net/tracker/index.php?func=detail&aid=811040&group_id=75…>
Assignee: nobody
Summary: Problem compiling :/
Bug #: 942349
<http://sourceforge.net/tracker/index.php?func=detail&aid=942349&group_id=75…>
Assignee: nobody
Summary: boost for ARM platform?
Bug #: 957850
<http://sourceforge.net/tracker/index.php?func=detail&aid=957850&group_id=75…>
Assignee: nobody
Summary: problem with debug builds on Solaris
Bug #: 965747
<http://sourceforge.net/tracker/index.php?func=detail&aid=965747&group_id=75…>
Assignee: nobody
Summary: SLOOOWW tokenizer compilation on VC++6.0
Bug #: 969590
<http://sourceforge.net/tracker/index.php?func=detail&aid=969590&group_id=75…>
Assignee: nobody
Summary: BOOST ON WIN CE
Bug #: 1101724
<http://sourceforge.net/tracker/index.php?func=detail&aid=1101724&group_id=7…>
Assignee: nobody
Summary: Error: Template with C linkage
Bug #: 1109438
<http://sourceforge.net/tracker/index.php?func=detail&aid=1109438&group_id=7…>
Assignee: nobody
Summary: Link VC6 to Boost
Bug #: 1118381
<http://sourceforge.net/tracker/index.php?func=detail&aid=1118381&group_id=7…>
Assignee: nobody
Summary: Boost on opteron AMD
Bug #: 1200700
<http://sourceforge.net/tracker/index.php?func=detail&aid=1200700&group_id=7…>
Assignee: nobody
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: nobody
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: nobody
Summary: Problem running configure for unsupported platform
Bug #: 1339778
<http://sourceforge.net/tracker/index.php?func=detail&aid=1339778&group_id=7…>
Assignee: nobody
Summary: Configuration
Bug #: 1380808
<http://sourceforge.net/tracker/index.php?func=detail&aid=1380808&group_id=7…>
Assignee: nobody
Summary: Embedded python won't compile
Bug #: 1391956
<http://sourceforge.net/tracker/index.php?func=detail&aid=1391956&group_id=7…>
Assignee: nobody
Summary: Building universal binary on MacOSX
Bug #: 1409774
<http://sourceforge.net/tracker/index.php?func=detail&aid=1409774&group_id=7…>
Assignee: nobody
Summary: symbian os
Bug #: 1428189
<http://sourceforge.net/tracker/index.php?func=detail&aid=1428189&group_id=7…>
Assignee: nobody
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: nobody
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: nobody
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: nobody
Summary: Compiling Shmem
Bug #: 1504379
<http://sourceforge.net/tracker/index.php?func=detail&aid=1504379&group_id=7…>
Assignee: nobody
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…>
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: '-shared' not supported for linking under MacOS X
Bug #: 1553825
<http://sourceforge.net/tracker/index.php?func=detail&aid=1553825&group_id=7…>
Assignee: nobody
Summary: failing on 6 targets in MacOS X
Bug #: 1572712
<http://sourceforge.net/tracker/index.php?func=detail&aid=1572712&group_id=7…>
Assignee: nobody
Summary: bjam: command not found
Bug #: 1586479
<http://sourceforge.net/tracker/index.php?func=detail&aid=1586479&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: speedsnail <http://sourceforge.net/users/speedsnail/>
Summary: Multithreaded process pausing but not deadlocking or crashin
Bug #: 1280829
<http://sourceforge.net/tracker/index.php?func=detail&aid=1280829&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…>
--
-- 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
Hi there, I'm new to boost, and am trying to install and test it on a Fedora
FC3 machine with gcc 3.4.3. I have installed boost into the default
locations /usr/local/lib and /usr/local/include/boost-1_33_1 respectively
with bjam as instructed. I then try to compile the example regex program
(copied below) with this command:
g++ -L/usr/local/lib -I/usr/local/include/boost-1_33_1
-lboost_regex-gcc-1_33_1 test.cpp
but I get this error:
test.cpp: In function `void print_captures(const std::string&, const
std::string&)':
test.cpp:23: error: 'class boost::smatch' has no member named 'captures'
test.cpp:29: error: 'class boost::smatch' has no member named 'captures'
Note that when I comment out the lines marked in the code below, it
compikes. So only the captures bits are going wrong.
I noticed there was an old boost installation on this FC3 in
/usr/include/boost and /usr/lib respectively. I've renemaed the former; the
second I've left in case other programs are relying on it.
I'm guessing that the API has changed and this captures thing is new -- any
ideas about how best to make this work?
(btw, what exactly are the conventions for installing into /usr/include and
/usr/lib rather than their local counterparts? Where should boost correctly
live?)
Thanks,
Charles
---------
#include <boost/regex.hpp>
#include <iostream>
void print_captures(const std::string& regx, const std::string& text)
{
boost::regex e(regx);
boost::smatch what;
std::cout << "Expression: \"" << regx << "\"\n";
std::cout << "Text: \"" << text << "\"\n";
if(boost::regex_match(text, what, e, boost::match_extra))
{
unsigned i, j;
std::cout << "** Match found **\n Sub-Expressions:\n";
for(i = 0; i < what.size(); ++i)
std::cout << " $" << i << " = \"" << what[i] << "\"\n";
std::cout << " Captures:\n";
for(i = 0; i < what.size(); ++i)
{ //---------------comment out
from here
std::cout << " $" << i << " = {";
for(j = 0; j < what.captures(i).size(); ++j)
{
if(j)
std::cout << ", ";
else
std::cout << " ";
std::cout << "\"" << what.captures(i)[j] << "\"";
}
std::cout << " }\n";
} //------------ to here
}
else
{
std::cout << "** No Match found **\n";
}
}
int main(int , char* [])
{
print_captures("(([[:lower:]]+)|([[:upper:]]+))+",
"aBBcccDDDDDeeeeeeee");
print_captures("(.*)bar|(.*)bah", "abcbar");
print_captures("(.*)bar|(.*)bah", "abcbah");
print_captures("^(?:(\\w+)|(?>\\W+))*$", "now is the time for all good
men to come to the aid of the party");
return 0;
}
3
2
Hi Jeff,
I was just reading through the date-time docs. Very impressive
documentation, I must say. One thing tripped me up, though: your use
of the word "weekend" in your first example
http://boost.org/doc/html/date_time/examples/general_usage_examples.html
You're not really referring to the weekend (Saturday and Sunday), but
the delimiter for the first 7 days of February, i.e., Feb 8. IMO a
well-placed underscore could improve things a lot:
week_end
or better,
week_finish
since you're using "weekstart" and not "weekbegin."
--
Dave Abrahams
Boost Consulting
www.boost-consulting.com
2
2
Currently the Boost.TR1 <memory> fails one conformance test,
bad_weak_ptr::what() returns 'boost::bad_weak_ptr' and it should return
'tr1::bad_weak_ptr'.
Any violent objections against changing it to conform in HEAD?
Any ordinary objections against changing it in 1.34 as well?
2
1
Boost Inspection Report
Run Date: 17:06:15 UTC, Tuesday 07 November 2006
An inspection program <http://www.boost.org/tools/inspect/index.html>
checks each file in the current Boost CVS for various problems,
generating this as output. Problems detected include tabs in files,
missing copyrights, broken URL's, and similar misdemeanors.
Totals:
11421 files scanned
889 directories scanned (including root)
1399 problems reported
Problem counts:
904 files missing Boost license info or having wrong reference text
495 files missing copyright notice
Summary:
any (3)
archive (1)
array (3)
assign (2)
bind (8)
boost-root (4)
build (58)
compatibility (2)
compose (2)
concept_check (24)
conversion (5)
detail (4)
disjoint_sets (4)
doc (2)
filesystem (2)
format (8)
function (1)
functional (8)
inspect (1)
integer (9)
io (2)
iostreams (2)
lambda (14)
libs (8)
logic (2)
math (1)
mem_fn (2)
more (30)
mpl (419)
multi_array (15)
numeric (206)
optional (3)
people (90)
pool (32)
program_options (39)
property_map (17)
ptr_container (113)
python (6)
quickbook (11)
random (20)
range (18)
rational (5)
regex (4)
regression (64)
release (2)
serialization (16)
smart_ptr (14)
test (5)
timer (3)
tokenizer (9)
tr1 (2)
tuple (7)
utility (25)
variant (42)
Details:
*L* missing Boost license info, or wrong reference text
*C* missing copyright notice
|any|
libs/any/doc/
any.xml: *L*
libs/any/
index.html: *C* *L*
|archive|
boost/archive/detail/
utf8_codecvt_facet.hpp: *L*
|array|
libs/array/doc/
array.xml: *L*
libs/array/
index.html: *C* *L*
|assign|
libs/assign/doc/
style.css: *L*
libs/assign/
index.html: *L*
|bind|
libs/bind/
bind.html: *L*
libs/bind/doc/
ref.xml: *L*
libs/bind/
index.html: *C* *L*
mem_fn.html: *L*
ref.html: *C* *L*
libs/bind/test/
Jamfile.v2: *L*
|boost-root|
/
README: *C*
boost.css: *C* *L*
rst.css: *L*
|build|
tools/build/v2/build/
build-request.jam: *L*
modifiers.jam: *L*
tools/build/v2/doc/
Jamfile.v2: *C* *L*
tools/build/v2/doc/src/
advanced.xml: *C* *L*
architecture.xml: *C* *L*
catalog.xml: *C* *L*
extending.xml: *C* *L*
faq.xml: *C* *L*
howto.xml: *C* *L*
install.xml: *C* *L*
recipes.xml: *C* *L*
reference.xml: *C* *L*
standalone.xml: *C* *L*
tutorial.xml: *C* *L*
userman.xml: *C* *L*
tools/build/v2/example/python_modules/
python_helpers.jam: *C* *L*
python_helpers.py: *C* *L*
tools/build/v2/test/
abs_workdir.py: *C* *L*
dependency_property.py: *L*
dependency_test.py: *C* *L*
direct_request_test.py: *C* *L*
dll_path.py: *L*
double_loading.py: *L*
duplicate.py: *L*
echo_args.jam: *C* *L*
empty.jam: *C* *L*
expansion.py: *L*
explicit.py: *L*
gcc_runtime.py: *L*
tools/build/v2/test/project-test3/lib3/
Jamfile: *C* *L*
tools/build/v2/test/
readme.txt: *C* *L*
svn_tree.py: *L*
tag.py: *L*
test_system.html: *L*
tools/build/v2/tools/
sun.jam: *L*
xsltproc.jam: *L*
|compatibility|
libs/compatibility/
generate_cpp_c_headers.py: *L*
index.html: *L*
|compose|
libs/compose/
index.htm: *C* *L*
|concept_check|
libs/concept_check/
bibliography.htm: *L*
concept_check.htm: *L*
concept_covering.htm: *L*
creating_concepts.htm: *L*
libs/concept_check/doc/
Jamfile.v2: *C* *L*
libs/concept_check/doc/reference/
Assignable.xml: *L*
BidirectionalIterator.xml: *L*
CopyConstructible.xml: *L*
DefaultConstructible.xml: *L*
EqualityComparable.xml: *L*
ForwardIterator.xml: *L*
InputIterator.xml: *L*
LessThanComparable.xml: *L*
OutputIterator.xml: *L*
RandomAccessIterator.xml: *L*
SignedInteger.xml: *L*
concepts.xml: *L*
libs/concept_check/
implementation.htm: *L*
index.html: *C* *L*
prog_with_concepts.htm: *L*
reference.htm: *L*
using_concept_check.htm: *L*
|conversion|
libs/conversion/
cast.htm: *L*
index.html: *C* *L*
lexical_cast.htm: *L*
libs/conversion/test/
Jamfile.v2: *L*
|detail|
boost/detail/
algorithm.hpp: *L*
endian.hpp: *L*
limits.hpp: *L*
utf8_codecvt_facet.hpp: *L*
|disjoint_sets|
libs/disjoint_sets/
bibliography.html: *L*
disjoint_sets.html: *L*
index.html: *C* *L*
|doc|
doc/html/
reference.css: *C* *L*
|filesystem|
libs/filesystem/doc/
tr2_proposal.html: *L*
libs/filesystem/src/
utf8_codecvt_facet.hpp: *L*
|format|
libs/format/benchmark/
bench_format.cpp: *C*
results.txt: *C* *L*
libs/format/doc/
choices.html: *L*
format.html: *C*
libs/format/
index.html: *C* *L*
libs/format/test/
Jamfile.v2: *L*
|function|
boost/function/detail/
gen_maybe_include.pl: *L*
|functional|
boost/
functional.hpp: *L*
libs/functional/
binders.html: *L*
function_test.cpp: *L*
function_traits.html: *L*
index.html: *L*
mem_fun.html: *L*
negators.html: *L*
ptr_fun.html: *L*
|inspect|
tools/inspect/build/
Jamfile.v2: *L*
|integer|
libs/integer/
cstdint.htm: *C* *L*
libs/integer/doc/
integer_mask.html: *L*
static_min_max.html: *L*
libs/integer/
index.html: *C* *L*
integer.htm: *L*
integer_traits.html: *C* *L*
|io|
libs/io/
index.html: *C* *L*
|iostreams|
libs/iostreams/doc/
menu.html: *C*
libs/iostreams/test/detail/
utf8_codecvt_facet.hpp: *L*
|lambda|
libs/lambda/doc/
Jamfile.v2: *C* *L*
libs/lambda/doc/detail/
README: *C* *L*
lambda_doc.xsl: *C* *L*
lambda_doc_chunks.xsl: *C* *L*
libs/lambda/doc/
index.html: *C* *L*
libs/lambda/
index.html: *C* *L*
libs/lambda/test/
Makefile: *C* *L*
|libs|
libs/
expected_results.xml: *C* *L*
index.html: *C* *L*
maintainers.txt: *C* *L*
platform_maintainers.txt: *C* *L*
|logic|
libs/logic/doc/
Jamfile.v2: *C* *L*
|math|
boost/math/
common_factor_rt.hpp: *L*
|mem_fn|
libs/mem_fn/
index.html: *C* *L*
|more|
more/
borland_cpp.html: *C* *L*
count_bdy.htm: *L*
discussion_policy.htm: *C*
error_handling.html: *L*
generic_exception_safety.html: *C* *L*
generic_programming.html: *L*
microsoft_vcpp.html: *C* *L*
moderators.html: *C*
regression.html: *C* *L*
report-apr-2006.html: *C* *L*
report-jan-2006.html: *C* *L*
more/writingdoc/
design.html: *L*
index.html: *L*
introduction.html: *L*
structure.html: *L*
more/writingdoc/template/
acknowledgments.html: *L*
bibliography.html: *L*
configuration.html: *L*
definitions.html: *L*
faq.html: *L*
header.html: *L*
index.html: *L*
overview.html: *L*
rationale.html: *L*
|mpl|
libs/mpl/doc/src/refmanual/
ASSERT.rst: *C* *L*
ASSERT_MSG.rst: *C* *L*
ASSERT_NOT.rst: *C* *L*
ASSERT_RELATION.rst: *C* *L*
AUX_LAMBDA_SUPPORT.rst: *C* *L*
Acknowledgements.rst: *C* *L*
Algorithms-Iteration.rst: *C* *L*
Algorithms-Querying.rst: *C* *L*
Algorithms-Runtime.rst: *C* *L*
Algorithms-Transformation.rst: *C* *L*
Algorithms.rst: *C* *L*
AssociativeSequence.rst: *C* *L*
BackExtensibleSequence.rst: *C* *L*
BidirectionalIterator.rst: *C* *L*
BidirectionalSequence.rst: *C* *L*
CFG_NO_HAS_XXX.rst: *C* *L*
CFG_NO_PREPROCESSED.rst: *C* *L*
Categorized.rst: *C* *L*
Data.rst: *C* *L*
ExtensibleAssociativeSeq.rst: *C* *L*
ExtensibleSequence.rst: *C* *L*
ForwardIterator.rst: *C* *L*
ForwardSequence.rst: *C* *L*
FrontExtensibleSequence.rst: *C* *L*
HAS_XXX_TRAIT_DEF.rst: *C* *L*
HAS_XXX_TRAIT_NAMED_DEF.rst: *C* *L*
Inserter.rst: *C* *L*
IntegralConstant.rst: *C* *L*
IntegralSequenceWrapper.rst: *C* *L*
Iterators-Concepts.rst: *C* *L*
Iterators-Metafunctions.rst: *C* *L*
Iterators.rst: *C* *L*
LIMIT_LIST_SIZE.rst: *C* *L*
LIMIT_MAP_SIZE.rst: *C* *L*
LIMIT_METAFUNCTION_ARITY.rst: *C* *L*
LIMIT_SET_SIZE.rst: *C* *L*
LIMIT_UNROLLING.rst: *C* *L*
LIMIT_VECTOR_SIZE.rst: *C* *L*
LambdaExpression.rst: *C* *L*
Macros-Asserts.rst: *C* *L*
Macros-Configuration.rst: *C* *L*
Macros.rst: *C* *L*
Metafunction.rst: *C* *L*
MetafunctionClass.rst: *C* *L*
Metafunctions-Arithmetic.rst: *C* *L*
Metafunctions-Bitwise.rst: *C* *L*
Metafunctions-Comparisons.rst: *C* *L*
Metafunctions-Composition.rst: *C* *L*
Metafunctions-Conditional.rst: *C* *L*
Metafunctions-Invocation.rst: *C* *L*
Metafunctions-Logical.rst: *C* *L*
Metafunctions-Trivial.rst: *C* *L*
Metafunctions-Type.rst: *C* *L*
Metafunctions.rst: *C* *L*
NumericMetafunction.rst: *C* *L*
PlaceholderExpression.rst: *C* *L*
Placeholders.rst: *C* *L*
RandomAccessIterator.rst: *C* *L*
RandomAccessSequence.rst: *C* *L*
ReversibleAlgorithm.rst: *C* *L*
Sequences-Classes.rst: *C* *L*
Sequences-Concepts.rst: *C* *L*
Sequences-Intrinsic.rst: *C* *L*
Sequences-Views.rst: *C* *L*
Sequences.rst: *C* *L*
TagDispatchedMetafunction.rst: *C* *L*
TrivialMetafunction.rst: *C* *L*
VariadicSequence.rst: *C* *L*
accumulate.rst: *C* *L*
advance.rst: *C* *L*
always.rst: *C* *L*
and_.rst: *C* *L*
apply.rst: *C* *L*
apply_wrap.rst: *C* *L*
arg.rst: *C* *L*
at.rst: *C* *L*
at_c.rst: *C* *L*
back.rst: *C* *L*
back_inserter.rst: *C* *L*
begin.rst: *C* *L*
bind.rst: *C* *L*
bitand_.rst: *C* *L*
bitor_.rst: *C* *L*
bitxor_.rst: *C* *L*
bool_.rst: *C* *L*
clear.rst: *C* *L*
contains.rst: *C* *L*
copy.rst: *C* *L*
copy_if.rst: *C* *L*
count.rst: *C* *L*
count_if.rst: *C* *L*
deque.rst: *C* *L*
deref.rst: *C* *L*
distance.rst: *C* *L*
divides.rst: *C* *L*
empty.rst: *C* *L*
empty_base.rst: *C* *L*
empty_sequence.rst: *C* *L*
end.rst: *C* *L*
equal.rst: *C* *L*
equal_to.rst: *C* *L*
erase.rst: *C* *L*
erase_key.rst: *C* *L*
eval_if.rst: *C* *L*
eval_if_c.rst: *C* *L*
filter_view.rst: *C* *L*
find.rst: *C* *L*
find_if.rst: *C* *L*
fold.rst: *C* *L*
for_each.rst: *C* *L*
front.rst: *C* *L*
front_inserter.rst: *C* *L*
greater.rst: *C* *L*
greater_equal.rst: *C* *L*
has_key.rst: *C* *L*
identity.rst: *C* *L*
if_.rst: *C* *L*
if_c.rst: *C* *L*
inherit.rst: *C* *L*
inherit_linearly.rst: *C* *L*
insert.rst: *C* *L*
insert_range.rst: *C* *L*
inserter_.rst: *C* *L*
int_.rst: *C* *L*
integral_c.rst: *C* *L*
is_sequence.rst: *C* *L*
iter_fold.rst: *C* *L*
iter_fold_if.rst: *C* *L*
iterator_category.rst: *C* *L*
iterator_range.rst: *C* *L*
joint_view.rst: *C* *L*
key_type.rst: *C* *L*
lambda.rst: *C* *L*
less.rst: *C* *L*
less_equal.rst: *C* *L*
list.rst: *C* *L*
list_c.rst: *C* *L*
long_.rst: *C* *L*
lower_bound.rst: *C* *L*
map.rst: *C* *L*
max.rst: *C* *L*
max_element.rst: *C* *L*
min.rst: *C* *L*
min_element.rst: *C* *L*
minus.rst: *C* *L*
modulus.rst: *C* *L*
multiplies.rst: *C* *L*
negate.rst: *C* *L*
next.rst: *C* *L*
not_.rst: *C* *L*
not_equal_to.rst: *C* *L*
numeric_cast.rst: *C* *L*
or_.rst: *C* *L*
order.rst: *C* *L*
pair.rst: *C* *L*
partition.rst: *C* *L*
plus.rst: *C* *L*
pop_back.rst: *C* *L*
pop_front.rst: *C* *L*
preface.rst: *C* *L*
prior.rst: *C* *L*
protect.rst: *C* *L*
push_back.rst: *C* *L*
push_front.rst: *C* *L*
quote.rst: *C* *L*
range_c.rst: *C* *L*
refmanual.py: *C* *L*
remove.rst: *C* *L*
remove_if.rst: *C* *L*
replace.rst: *C* *L*
replace_if.rst: *C* *L*
reverse.rst: *C* *L*
reverse_copy.rst: *C* *L*
reverse_copy_if.rst: *C* *L*
reverse_fold.rst: *C* *L*
reverse_iter_fold.rst: *C* *L*
reverse_partition.rst: *C* *L*
reverse_remove.rst: *C* *L*
reverse_remove_if.rst: *C* *L*
reverse_replace.rst: *C* *L*
reverse_replace_if.rst: *C* *L*
reverse_stable_partition.rst: *C* *L*
reverse_transform.rst: *C* *L*
reverse_unique.rst: *C* *L*
sequence_tag.rst: *C* *L*
set.rst: *C* *L*
set_c.rst: *C* *L*
shift_left.rst: *C* *L*
shift_right.rst: *C* *L*
single_view.rst: *C* *L*
size.rst: *C* *L*
size_t.rst: *C* *L*
sizeof_.rst: *C* *L*
sort.rst: *C* *L*
stable_partition.rst: *C* *L*
terminology.rst: *C* *L*
times.rst: *C* *L*
transform.rst: *C* *L*
transform_view.rst: *C* *L*
unique.rst: *C* *L*
unpack_args.rst: *C* *L*
upper_bound.rst: *C* *L*
value_type.rst: *C* *L*
vector.rst: *C* *L*
vector_c.rst: *C* *L*
void_.rst: *C* *L*
zip_view.rst: *C* *L*
libs/mpl/doc/
style.css: *L*
libs/mpl/
index.html: *C* *L*
libs/mpl/test/
Jamfile.v2: *C* *L*
|multi_array|
libs/multi_array/doc/
iterator_categories.html: *C* *L*
reference.html: *L*
libs/multi_array/doc/xml/
MultiArray.xml: *C* *L*
const_multi_array_ref.xml: *C* *L*
multi_array.xml: *C* *L*
multi_array_ref.xml: *C* *L*
reference.xml: *L*
libs/multi_array/
index.html: *C* *L*
libs/multi_array/test/
Jamfile.v2: *L*
|numeric|
boost/numeric/ublas/
banded.hpp: *L*
blas.hpp: *L*
boost/numeric/ublas/detail/
concepts.hpp: *L*
config.hpp: *L*
definitions.hpp: *L*
documentation.hpp: *L*
duff.hpp: *L*
iterator.hpp: *L*
matrix_assign.hpp: *L*
raw.hpp: *L*
temporary.hpp: *L*
vector_assign.hpp: *L*
boost/numeric/ublas/
exception.hpp: *L*
expression_types.hpp: *L*
functional.hpp: *L*
fwd.hpp: *L*
hermitian.hpp: *L*
io.hpp: *L*
lu.hpp: *L*
matrix.hpp: *L*
matrix_expression.hpp: *L*
matrix_proxy.hpp: *L*
matrix_sparse.hpp: *L*
operation.hpp: *L*
operation_blocked.hpp: *L*
operation_sparse.hpp: *L*
storage.hpp: *L*
storage_sparse.hpp: *L*
symmetric.hpp: *L*
traits.hpp: *L*
triangular.hpp: *L*
vector.hpp: *L*
vector_expression.hpp: *L*
vector_of_vector.hpp: *L*
vector_proxy.hpp: *L*
vector_sparse.hpp: *L*
libs/numeric/conversion/
index.html: *C* *L*
libs/numeric/conversion/test/
Jamfile.v2: *C* *L*
test_helpers.cpp: *C*
test_helpers2.cpp: *C*
test_helpers3.cpp: *C*
traits_test.cpp: *C*
udt_example_0.cpp: *C*
udt_support_test.cpp: *C*
libs/numeric/
index.html: *C* *L*
libs/numeric/interval/doc/
checking.htm: *L*
comparisons.htm: *L*
examples.htm: *L*
guide.htm: *L*
includes.htm: *L*
index.html: *C* *L*
interval.htm: *L*
numbers.htm: *L*
policies.htm: *L*
rounding.htm: *L*
todo.htm: *L*
libs/numeric/ublas/bench1/
bench1.cpp: *L*
bench1.hpp: *L*
bench11.cpp: *L*
bench12.cpp: *L*
bench13.cpp: *L*
libs/numeric/ublas/bench2/
bench2.cpp: *L*
bench2.hpp: *L*
bench21.cpp: *L*
bench22.cpp: *L*
bench23.cpp: *L*
libs/numeric/ublas/bench3/
bench3.cpp: *L*
bench3.hpp: *L*
bench31.cpp: *L*
bench32.cpp: *L*
bench33.cpp: *L*
libs/numeric/ublas/bench4/
bench4.cpp: *L*
bench41.cpp: *L*
bench42.cpp: *L*
bench43.cpp: *L*
libs/numeric/ublas/doc/
Release_notes.txt: *C* *L*
array_adaptor.htm: *C* *L*
banded.htm: *L*
blas.htm: *L*
bounded_array.htm: *C* *L*
container_concept.htm: *L*
doxygen.css: *C* *L*
expression_concept.htm: *L*
hermitian.htm: *L*
index.htm: *L*
iterator_concept.htm: *L*
matrix.htm: *L*
matrix_expression.htm: *L*
matrix_proxy.htm: *L*
matrix_sparse.htm: *L*
operations_overview.htm: *L*
overview.htm: *L*
products.htm: *L*
range.htm: *C* *L*
libs/numeric/ublas/doc/samples/
banded_adaptor.cpp: *L*
banded_matrix.cpp: *L*
bounded_array.cpp: *L*
compressed_matrix.cpp: *L*
compressed_vector.cpp: *L*
coordinate_matrix.cpp: *L*
coordinate_vector.cpp: *L*
hermitian_adaptor.cpp: *L*
hermitian_matrix.cpp: *L*
identity_matrix.cpp: *L*
map_array.cpp: *L*
mapped_matrix.cpp: *L*
mapped_vector.cpp: *L*
matrix.cpp: *L*
matrix_binary.cpp: *L*
matrix_binary_scalar.cpp: *L*
matrix_column.cpp: *L*
matrix_column_project.cpp: *L*
matrix_matrix_binary.cpp: *L*
matrix_matrix_solve.cpp: *L*
matrix_range.cpp: *L*
matrix_range_project.cpp: *L*
matrix_row.cpp: *L*
matrix_row_project.cpp: *L*
matrix_slice.cpp: *L*
matrix_slice_project.cpp: *L*
matrix_unary.cpp: *L*
matrix_vector_binary.cpp: *L*
matrix_vector_range.cpp: *L*
matrix_vector_slice.cpp: *L*
matrix_vector_solve.cpp: *L*
range.cpp: *L*
slice.cpp: *L*
symmetric_adaptor.cpp: *L*
symmetric_matrix.cpp: *L*
triangular_adaptor.cpp: *L*
triangular_matrix.cpp: *L*
unbounded_array.cpp: *L*
unit_vector.cpp: *L*
vector.cpp: *L*
vector_binary.cpp: *L*
vector_binary_outer.cpp: *L*
vector_binary_redux.cpp: *L*
vector_binary_scalar.cpp: *L*
vector_range.cpp: *L*
vector_range_project.cpp: *L*
vector_slice.cpp: *L*
vector_slice_project.cpp: *L*
vector_unary.cpp: *L*
vector_unary_redux.cpp: *L*
zero_matrix.cpp: *L*
zero_vector.cpp: *L*
libs/numeric/ublas/doc/
storage_concept.htm: *C* *L*
storage_sparse.htm: *L*
symmetric.htm: *L*
triangular.htm: *L*
types_overview.htm: *L*
ublas.css: *C* *L*
unbounded_array.htm: *C* *L*
vector.htm: *L*
vector_expression.htm: *L*
vector_proxy.htm: *L*
vector_sparse.htm: *L*
libs/numeric/ublas/
index.html: *C* *L*
libs/numeric/ublas/test/
README: *C* *L*
concepts.cpp: *L*
test1.cpp: *L*
test1.hpp: *L*
test11.cpp: *L*
test12.cpp: *L*
test13.cpp: *L*
test2.cpp: *L*
test2.hpp: *L*
test21.cpp: *L*
test22.cpp: *L*
test23.cpp: *L*
test3.cpp: *L*
test3.hpp: *L*
test31.cpp: *L*
test32.cpp: *L*
test33.cpp: *L*
test4.cpp: *L*
test4.hpp: *L*
test42.cpp: *L*
test43.cpp: *L*
test5.cpp: *L*
test5.hpp: *L*
test52.cpp: *L*
test53.cpp: *L*
test6.cpp: *L*
test6.hpp: *L*
test62.cpp: *L*
test63.cpp: *L*
test7.cpp: *L*
test7.hpp: *L*
test71.cpp: *L*
test72.cpp: *L*
test73.cpp: *L*
|optional|
libs/optional/
index.html: *C* *L*
libs/optional/test/
Jamfile.v2: *L*
|people|
people/
aleksey_gurtovoy.htm: *C* *L*
andreas_huber.html: *C* *L*
beman_dawes.html: *C* *L*
darin_adler.htm: *C* *L*
daryle_walker.html: *C* *L*
dietmar_kuehl.htm: *C* *L*
doug_gregor.html: *C* *L*
ed_brey.htm: *C* *L*
eric_friedman.htm: *C* *L*
fernando_cacciola.html: *C* *L*
gary_powell.htm: *C* *L*
gennadiy_rozental.htm: *C* *L*
greg_colvin.htm: *C* *L*
hartmut_kaiser.htm: *C* *L*
herve_bronnimann.htm: *C* *L*
howard_hinnant.htm: *C* *L*
hubert_holin.html: *C* *L*
jaakko_jarvi.htm: *C* *L*
jeff_garland.html: *C* *L*
jens_maurer.htm: *C* *L*
jeremy_siek.htm: *C* *L*
joaquin_lopez.htm: *C* *L*
joel_de_guzman.htm: *C* *L*
john_maddock.htm: *C* *L*
jonathan_turkanis.htm: *C* *L*
kevlin_henney.htm: *C* *L*
liequan_lee.htm: *C* *L*
mac_murrett.htm: *C* *L*
mark_rodgers.htm: *C* *L*
mat_marcus.htm: *C* *L*
paul_mensonides.htm: *C* *L*
paul_moore.htm: *C* *L*
pavol_droba.htm: *C* *L*
people.htm: *C* *L*
peter_dimov.htm: *C* *L*
ralf_w_grosse_kunstleve.htm: *C* *L*
rene_rivera.htm: *C* *L*
robert_ramey.htm: *C* *L*
ronald_garcia.htm: *C* *L*
samuel_krempp.htm: *C* *L*
thomas_witt.html: *C* *L*
thorsten_ottosen.html: *C* *L*
vesa_karvonen.htm: *C* *L*
vladimir_prus.htm: *C* *L*
william_kempf.htm: *C* *L*
|pool|
boost/pool/detail/
pool_construct.bat: *L*
pool_construct.sh: *L*
pool_construct_simple.bat: *L*
pool_construct_simple.sh: *L*
libs/pool/
TODO.txt: *C* *L*
libs/pool/doc/
concepts.html: *L*
copyright.html: *L*
libs/pool/doc/implementation/
alignment.html: *L*
ct_gcd_lcm.html: *L*
for.html: *L*
gcd_lcm.html: *L*
guard.html: *L*
mutex.html: *L*
object_pool.html: *L*
pool.html: *L*
pool_alloc.html: *L*
pool_construct.html: *L*
simple_segregated_storage.html: *L*
singleton.html: *L*
singleton_pool.html: *L*
libs/pool/doc/
index.html: *L*
interfaces.html: *L*
libs/pool/doc/interfaces/
object_pool.html: *L*
pool.html: *L*
pool_alloc.html: *L*
simple_segregated_storage.html: *L*
singleton_pool.html: *L*
user_allocator.html: *L*
libs/pool/doc/
pool.css: *L*
libs/pool/
index.html: *C* *L*
|program_options|
boost/program_options/detail/
utf8_codecvt_facet.hpp: *L*
libs/program_options/build/
Jamfile.v2: *C* *L*
libs/program_options/doc/
Jamfile.v2: *C* *L*
acknowledgements.xml: *C* *L*
changes.xml: *C* *L*
design.xml: *C* *L*
glossary.xml: *C* *L*
howto.xml: *C* *L*
index.html: *C* *L*
overview.xml: *C* *L*
post_review_plan.txt: *C* *L*
todo.txt: *C* *L*
tutorial.xml: *C* *L*
libs/program_options/example/
Jamfile.v2: *C* *L*
libs/program_options/
index.html: *C* *L*
libs/program_options/test/
Jamfile.v2: *C* *L*
program_options_size_test.py: *C* *L*
ucs2.txt: *C* *L*
utf8.txt: *C* *L*
winmain.py: *C* *L*
|property_map|
libs/property_map/
LvaluePropertyMap.html: *L*
ReadWritePropertyMap.html: *L*
ReadablePropertyMap.html: *L*
WritablePropertyMap.html: *L*
associative_property_map.html: *L*
const_assoc_property_map.html: *L*
libs/property_map/doc/
dynamic_property_map.html: *C* *L*
dynamic_property_map.rst: *C* *L*
libs/property_map/
example2.cpp: *L*
identity_property_map.html: *L*
index.html: *C* *L*
iterator_property_map.html: *L*
property_map.html: *L*
vector_property_map.html: *L*
|ptr_container|
libs/ptr_container/doc/
Jamfile.v2: *C* *L*
associative_ptr_container.html: *L*
associative_ptr_container.rst: *L*
comp.sh: *C* *L*
comp_all.sh: *C* *L*
comp_assoc_ptr_container.sh: *C* *L*
comp_conventions.sh: *C* *L*
comp_examples.sh: *C* *L*
comp_faq.sh: *C* *L*
comp_guidelines.sh: *C* *L*
comp_headers.sh: *C* *L*
comp_indirect_fun.sh: *C* *L*
comp_ptr_array.sh: *C* *L*
comp_ptr_container.sh: *C* *L*
comp_ptr_deque.sh: *C* *L*
comp_ptr_list.sh: *C* *L*
comp_ptr_map.sh: *C* *L*
comp_ptr_map_adapter.sh: *C* *L*
comp_ptr_multimap.sh: *C* *L*
comp_ptr_multimap_adapter.sh: *C* *L*
comp_ptr_multiset.sh: *C* *L*
comp_ptr_multiset_adapter.sh: *C* *L*
comp_ptr_sequence_adapter.sh: *C* *L*
comp_ptr_set.sh: *C* *L*
comp_ptr_set_adapter.sh: *C* *L*
comp_ptr_vector.sh: *C* *L*
comp_reference.sh: *C* *L*
comp_rever_ptr_container.sh: *C* *L*
comp_tutorial.sh: *C* *L*
conventions.html: *L*
conventions.rst: *L*
default.css: *L*
examples.rst: *L*
faq.html: *L*
faq.rst: *L*
guidelines.html: *L*
guidelines.rst: *L*
headers.html: *L*
headers.rst: *L*
indirect_fun.html: *L*
indirect_fun.rst: *L*
intro.xml: *C* *L*
ptr_array.html: *L*
ptr_array.rst: *L*
ptr_container.xml: *L*
ptr_deque.html: *L*
ptr_deque.rst: *L*
ptr_list.html: *L*
ptr_list.rst: *L*
ptr_map.html: *L*
ptr_map.rst: *L*
ptr_map_adapter.html: *L*
ptr_map_adapter.rst: *L*
ptr_multimap.html: *L*
ptr_multimap.rst: *L*
ptr_multimap_adapter.html: *L*
ptr_multimap_adapter.rst: *L*
ptr_multiset.html: *L*
ptr_multiset.rst: *L*
ptr_multiset_adapter.html: *L*
ptr_multiset_adapter.rst: *L*
ptr_sequence_adapter.html: *L*
ptr_sequence_adapter.rst: *L*
ptr_set.html: *L*
ptr_set.rst: *L*
ptr_set_adapter.html: *L*
ptr_set_adapter.rst: *L*
ptr_vector.html: *L*
ptr_vector.rst: *L*
reference.html: *L*
reference.rst: *L*
reversible_ptr_container.html: *L*
reversible_ptr_container.rst: *L*
style.css: *C* *L*
todo.txt: *C* *L*
tutorial.html: *L*
tutorial.rst: *L*
libs/ptr_container/
index.html: *C* *L*
libs/ptr_container/test/
Jamfile.v2: *C* *L*
sequence_point.cpp: *C* *L*
|python|
libs/python/doc/
internals.html: *L*
internals.rst: *L*
libs/python/test/
operators_wrapper.cpp: *C* *L*
operators_wrapper.py: *C* *L*
|quickbook|
tools/quickbook/doc/
Jamfile.v2: *C* *L*
tools/quickbook/doc/html/quickbook/
change_log.html: *L*
intro.html: *L*
ref.html: *L*
syntax.html: *L*
tools/quickbook/doc/html/quickbook/syntax/
block.html: *L*
comments.html: *L*
phrase.html: *L*
tools/quickbook/
index.html: *C* *L*
|random|
libs/random/
index.html: *C* *L*
nondet_random.html: *C* *L*
random-concepts.html: *C* *L*
random-distributions.html: *C* *L*
random-generators.html: *C* *L*
random-misc.html: *C* *L*
random-performance.html: *C* *L*
random-variate.html: *C* *L*
libs/random/test/
Jamfile.v2: *C* *L*
libs/random/
wg21-proposal.html: *C* *L*
|range|
libs/range/doc/
boost_range.html: *L*
example.cpp: *C* *L*
examples.html: *L*
faq.html: *L*
headers.html: *L*
history_ack.html: *L*
intro.html: *L*
portability.html: *L*
range.html: *L*
style.css: *C* *L*
style.html: *L*
utility_class.html: *L*
libs/range/test/
TODO: *C* *L*
compat1.cpp: *C* *L*
|rational|
boost/
rational.hpp: *L*
libs/rational/
index.html: *L*
rational.html: *L*
rational_example.cpp: *L*
rational_test.cpp: *L*
|regex|
libs/regex/build/
gcc-shared.mak: *C* *L*
libs/regex/example/timer/
input_script.txt: *C* *L*
|regression|
tools/regression/build/
Jamfile.v2: *C* *L*
tools/regression/detail/
tiny_xml_test.txt: *C* *L*
tools/regression/
index.htm: *C* *L*
run_tests.sh: *C* *L*
tools/regression/test/
test.bat: *C* *L*
tools/regression/xsl_reports/
empty_expected_results.xml: *C* *L*
tools/regression/xsl_reports/runner/
__init__.py: *C* *L*
default.css: *L*
instructions.html: *L*
instructions.rst: *C* *L*
tools/regression/xsl_reports/test/
common.py: *C* *L*
expected_results.xml: *C* *L*
generate_test_results.py: *C* *L*
generate_test_results_v1.py: *C* *L*
restrict_to_library.xsl: *C* *L*
run_notes_regression.py: *C* *L*
run_v1.py: *C* *L*
test.py: *C* *L*
test_boost_wide_report.py: *C* *L*
tools/regression/xsl_reports/
test_results.xsd: *C* *L*
tools/regression/xsl_reports/utils/
__init__.py: *C* *L*
accept_args.py: *C* *L*
char_translation_table.py: *C* *L*
check_existance.py: *C* *L*
checked_system.py: *C* *L*
libxslt.py: *C* *L*
log.py: *C* *L*
makedirs.py: *C* *L*
send_mail.py: *C* *L*
sourceforge.py: *C* *L*
tar.py: *C* *L*
zip.py: *C* *L*
tools/regression/xsl_reports/xsl/v2/
expected_to_1_33_format.xsl: *C* *L*
|release|
tools/release/
utils.py: *C* *L*
|serialization|
libs/serialization/doc/
style.css: *C* *L*
libs/serialization/example/
demo_output.txt: *C* *L*
demo_save.xml: *C* *L*
demofile.txt: *C* *L*
libs/serialization/test/
run_archive_test.bat: *C* *L*
runtest.bat: *C* *L*
runtest.sh: *C* *L*
libs/serialization/vc7ide/
readme.txt: *C* *L*
|smart_ptr|
libs/smart_ptr/
compatibility.htm: *L*
enable_shared_from_this.html: *L*
index.html: *C* *L*
intrusive_ptr.html: *L*
scoped_array.htm: *L*
scoped_ptr.htm: *L*
shared_array.htm: *L*
shared_ptr.htm: *L*
smart_ptr.htm: *L*
smarttests.htm: *L*
sp_techniques.html: *L*
libs/smart_ptr/test/
Jamfile.v2: *L*
libs/smart_ptr/
weak_ptr.htm: *L*
|test|
boost/test/utils/runtime/cla/detail/
argument_value_usage.hpp: *L*
libs/test/example/
unit_test_example_01.cpp: *C* *L*
libs/test/test/auto-link-test/
run_bjam.bat: *C* *L*
|timer|
libs/timer/
index.html: *C* *L*
timer.htm: *L*
|tokenizer|
libs/tokenizer/
char_delimiters_separator.htm: *L*
char_separator.htm: *L*
escaped_list_separator.htm: *L*
index.html: *L*
introduc.htm: *L*
offset_separator.htm: *L*
token_iterator.htm: *L*
tokenizer.htm: *L*
tokenizerfunction.htm: *L*
|tr1|
boost/tr1/
tuple.hpp: *C* *L*
|tuple|
libs/tuple/doc/
design_decisions_rationale.html: *L*
tuple_advanced_interface.html: *L*
tuple_users_guide.html: *L*
libs/tuple/
index.html: *C* *L*
libs/tuple/test/
README: *C* *L*
|utility|
boost/
shared_container_iterator.hpp: *L*
libs/utility/
Assignable.html: *L*
Collection.html: *L*
CopyConstructible.html: *L*
LessThanComparable.html: *L*
MultiPassInputIterator.html: *L*
OptionalPointee.html: *L*
assert.html: *L*
call_traits.htm: *L*
checked_delete.html: *L*
compressed_pair.htm: *L*
current_function.html: *L*
enable_if.html: *L*
generator_iterator.htm: *C* *L*
index.html: *C* *L*
libs/utility/test/
Jamfile.v2: *L*
libs/utility/
throw_exception.html: *L*
utility.htm: *L*
value_init.htm: *L*
value_init_test.cpp: *C*
value_init_test_fail1.cpp: *C*
value_init_test_fail2.cpp: *C*
value_init_test_fail3.cpp: *C*
|variant|
libs/variant/doc/
Jamfile.v2: *C* *L*
biblio.xml: *C* *L*
design.xml: *C* *L*
introduction.xml: *C* *L*
misc.xml: *C* *L*
libs/variant/doc/reference/
apply_visitor.xml: *C* *L*
bad_visit.xml: *C* *L*
concepts.xml: *C* *L*
get.xml: *C* *L*
recursive_variant.xml: *C* *L*
recursive_wrapper.xml: *C* *L*
reference.xml: *C* *L*
static_visitor.xml: *C* *L*
variant.xml: *C* *L*
variant_fwd.xml: *C* *L*
visitor_ptr.xml: *C* *L*
libs/variant/doc/tutorial/
advanced.xml: *C* *L*
basic.xml: *C* *L*
tutorial.xml: *C* *L*
libs/variant/doc/
variant.xml: *L*
libs/variant/
index.html: *C* *L*
libs/variant/test/
Jamfile.v2: *L*
1
0
Boost Inspection Report
Run Date: 17:06:04 UTC, Tuesday 07 November 2006
An inspection program <http://www.boost.org/tools/inspect/index.html>
checks each file in the current Boost CVS for various problems,
generating this as output. Problems detected include tabs in files,
missing copyrights, broken URL's, and similar misdemeanors.
Totals:
11421 files scanned
889 directories scanned (including root)
246 problems reported
Problem counts:
0 files with invalid line endings
0 bookmarks with invalid characters
3 invalid urls
168 broken links
32 unlinked files
7 file/directory names issues
1 files with tabs
0 violations of the Boost min/max guidelines
35 usages of unnamed namespaces in headers (including .ipp files)
Summary:
archive (3)
bind (1)
boost-root (1)
build (2)
date_time (1)
doc (2)
filesystem (37)
graph (3)
inspect (1)
iostreams (15)
lambda (3)
more (66)
mpl (1)
multi_array (2)
parameter (2)
ptr_container (1)
python (6)
regex (1)
regression (14)
serialization (1)
signals (1)
test (81)
type_traits (1)
Details:
*R* invalid (cr only) line-ending
*A* invalid bookmarks, invalid urls, broken links, unlinked files
*N* file/directory names issues
*T* tabs in file
*M* uses of min or max that have not been protected from the min/max macros, or unallowed #undef-s
*U* unnamed namespace in header
|archive|
boost/archive/basic_streambuf_locale_saver.hpp:
*N* name exceeds 31 characters
boost/archive/impl/xml_wiarchive_impl.ipp:
*U* unnamed namespace at line 53
boost/archive/iterators/remove_whitespace.hpp:
*U* unnamed namespace at line 57
|bind|
boost/bind/placeholders.hpp:
*U* unnamed namespace at line 25
|boost-root|
index.htm:
*A* broken link: ../doc/html/signals.html
|build|
tools/build/v2/example/make/main.cpp.pro:
*N* name contains more than one dot character ('.')
tools/build/v2/test/test_system.html:
*A* unlinked file
|date_time|
libs/date_time/xmldoc/date_time_docs_howto.html:
*A* unlinked file
|doc|
doc/html/boost_math/inverse_complex.html:
*A* unlinked file
doc/html/jam.html:
*A* unlinked file
|filesystem|
libs/filesystem/doc/do-list.htm:
*A* invalid URL (hardwired file): file://?/
*A* invalid URL (hardwired file): file://?/UNC/
libs/filesystem/doc/i18n.html:
*A* broken link: convenience.htm#basic_recursive_directory_iterator
*A* broken link: exception.htm
*A* broken link: operations.htm
*A* broken link: operations.htm#Do-the-right-thing
*A* broken link: operations.htm#is_directory
*A* broken link: operations.htm#is_file
*A* broken link: operations.htm#status
libs/filesystem/doc/index.htm:
*A* broken link: ../build/Jamfile
*A* broken link: convenience.htm
*A* broken link: fstream.htm
*A* broken link: operations.htm#create_directory
*A* broken link: operations.htm#create_hard_link
*A* broken link: operations.htm#current_path
*A* broken link: operations.htm#directory_iterator
*A* broken link: operations.htm#equivalent
*A* broken link: operations.htm#file_size
*A* broken link: operations.htm#initial_path
*A* broken link: operations.htm#is_file
*A* broken link: operations.htm#is_symlink
*A* broken link: operations.htm#status
*A* broken link: operations.htm#symlink_status
*A* broken link: path.htm#Canonical
*A* broken link: path.htm#Grammar
*A* broken link: path.htm#Normalized
*A* broken link: path.htm#default_name_check
*A* broken link: path.htm#name_check_mechanism
*A* broken link: path.htm#normalize
*A* broken link: path.htm#operator_eq
*A* broken link: path.htm#synopsis
libs/filesystem/doc/portability_guide.htm:
*A* broken link: path.htm#name_check_typedef
libs/filesystem/doc/tr2_proposal.html:
*A* invalid URL (hardwired file): file:///C|/boost/site/libs/filesystem/doc/operations.htm#complete_note
|graph|
boost/graph/maximum_cardinality_matching.hpp:
*N* name exceeds 31 characters
libs/graph/doc/lengauer_tarjan_dominator_tree.htm:
*N* name exceeds 31 characters
libs/graph/doc/sorted_erdos_renyi_generator.html:
*N* name exceeds 31 characters
|inspect|
tools/inspect/index.html:
*A* broken link: build/Jamfile
|iostreams|
libs/iostreams/doc/acknowledgments.html:
*A* unlinked file
libs/iostreams/doc/concepts/multi-character.html:
*A* unlinked file
libs/iostreams/doc/guide/text_processing.html:
*A* unlinked file
libs/iostreams/doc/installation.html:
*A* broken link: ../../../tools/build/v1/build_system.htm
libs/iostreams/doc/tutorial/container_device.html:
*A* unlinked file
libs/iostreams/doc/tutorial/dictionary_filters.html:
*A* unlinked file
libs/iostreams/doc/tutorial/dual_use_filters.html:
*A* unlinked file
libs/iostreams/doc/tutorial/filter_usage.html:
*A* unlinked file
libs/iostreams/doc/tutorial/line_wrapping_filters.html:
*A* unlinked file
libs/iostreams/doc/tutorial/multichar_filters.html:
*A* unlinked file
libs/iostreams/doc/tutorial/shell_comments_filters.html:
*A* unlinked file
libs/iostreams/doc/tutorial/tab_expanding_filters.html:
*A* unlinked file
libs/iostreams/doc/tutorial/unix2dos_filters.html:
*A* unlinked file
libs/iostreams/doc/tutorial/writing_devices.html:
*A* unlinked file
|lambda|
boost/lambda/core.hpp:
*U* unnamed namespace at line 62
boost/lambda/detail/lambda_functors.hpp:
*U* unnamed namespace at line 25
boost/lambda/exceptions.hpp:
*U* unnamed namespace at line 24
|more|
more/getting_started.html:
*A* broken link: ../Jamfile
*A* broken link: ../tools/build/v1/borland-tools.html
*A* broken link: ../tools/build/v1/build_system.htm
*A* broken link: ../tools/build/v1/build_system.htm#build
*A* broken link: ../tools/build/v1/como-tools.html
*A* broken link: ../tools/build/v1/cw-tools.html
*A* broken link: ../tools/build/v1/darwin-tools.html
*A* broken link: ../tools/build/v1/dmc-stlport-tools.html
*A* broken link: ../tools/build/v1/dmc-tools.html
*A* broken link: ../tools/build/v1/edg-tools.html
*A* broken link: ../tools/build/v1/gcc-nocygwin-tools.html
*A* broken link: ../tools/build/v1/gcc-stlport-tools.html
*A* broken link: ../tools/build/v1/gcc-tools.html
*A* broken link: ../tools/build/v1/intel-linux-tools.html
*A* broken link: ../tools/build/v1/intel-win32-tools.html
*A* broken link: ../tools/build/v1/kcc-tools.html
*A* broken link: ../tools/build/v1/kylix-tools.html
*A* broken link: ../tools/build/v1/mingw-stlport-tools.html
*A* broken link: ../tools/build/v1/mingw-tools.html
*A* broken link: ../tools/build/v1/mipspro-tools.html
*A* broken link: ../tools/build/v1/msvc-stlport-tools.html
*A* broken link: ../tools/build/v1/msvc-tools.html
*A* broken link: ../tools/build/v1/sunpro-tools.html
*A* broken link: ../tools/build/v1/tru64cxx-tools.html
*A* broken link: ../tools/build/v1/vacpp-tools.html
*A* broken link: ../tools/build/v1/vc-7_1-stlport-tools.html
*A* broken link: ../tools/build/v1/vc-7_1-tools.html
*A* broken link: ../tools/build/v1/vc-8_0-tools.html
*A* broken link: ../tools/build/v1/vc7-stlport-tools.html
*A* broken link: ../tools/build/v1/vc7-tools.html
more/version_history.html:
*A* broken link: ../tools/build/v1/intel-linux-tools.html
*A* broken link: ../tools/build/v1/intel-win32-tools.html
*A* broken link: ../tools/build/v1/msvc-stlport-tools.html
|mpl|
boost/mpl/alias.hpp:
*U* unnamed namespace at line 17
|multi_array|
boost/multi_array/base.hpp:
*U* unnamed namespace at line 69
libs/multi_array/test/generative_tests.hpp:
*U* unnamed namespace at line 57
|parameter|
libs/parameter/doc/html/python.html:
*A* broken link: tag::x(int
*A* broken link: tag::y*(int
|ptr_container|
libs/ptr_container/doc/tutorial_example.html:
*A* unlinked file
|python|
libs/python/doc/building.html:
*A* broken link: ../../../tools/build/v1/build_system.htm
*A* broken link: ../../../tools/build/v1/build_system.htm#user_globals
*A* broken link: ../../../tools/build/v1/build_system.htm#variants
libs/python/doc/v2/May2002.html:
*A* broken link: ../../../../tools/build/v1/build_system.htm
*A* broken link: ../../../../tools/build/v1/gen_aix_import_file.py
libs/python/doc/v2/faq.html:
*A* broken link: ../../../../tools/build/v1/build_system.htm
|regex|
libs/regex/performance/input.html:
*A* unlinked file
|regression|
regression/.htaccess:
*N* leading character of ".htaccess" is not alphabetic
tools/regression/index.htm:
*A* broken link: build/Jamfile
tools/regression/xsl_reports/xsl/html/issues_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/library_developer_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/library_user_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/make_tinyurl.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/summary_developer_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/summary_user_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/issues_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/library_developer_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/library_user_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/make_tinyurl.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/summary_developer_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/summary_user_legend.html:
*A* unlinked file
|serialization|
libs/serialization/src/basic_xml_grammar.ipp:
*U* unnamed namespace at line 43
|signals|
boost/signals/detail/named_slot_map.hpp:
*T*
|test|
boost/test/floating_point_comparison.hpp:
*U* unnamed namespace at line 206
*U* unnamed namespace at line 228
boost/test/impl/cpp_main.ipp:
*U* unnamed namespace at line 42
boost/test/impl/exception_safety.ipp:
*U* unnamed namespace at line 400
boost/test/impl/framework.ipp:
*U* unnamed namespace at line 199
boost/test/impl/plain_report_formatter.ipp:
*U* unnamed namespace at line 45
boost/test/impl/progress_monitor.ipp:
*U* unnamed namespace at line 38
boost/test/impl/results_collector.ipp:
*U* unnamed namespace at line 106
boost/test/impl/results_reporter.ipp:
*U* unnamed namespace at line 48
boost/test/impl/unit_test_log.ipp:
*U* unnamed namespace at line 79
boost/test/impl/unit_test_monitor.ipp:
*U* unnamed namespace at line 35
boost/test/impl/unit_test_parameters.ipp:
*U* unnamed namespace at line 50
boost/test/results_collector.hpp:
*U* unnamed namespace at line 40
boost/test/test_tools.hpp:
*U* unnamed namespace at line 255
boost/test/utils/iterator/token_iterator.hpp:
*U* unnamed namespace at line 166
boost/test/utils/named_params.hpp:
*U* unnamed namespace at line 216
boost/test/utils/runtime/cla/dual_name_parameter.ipp:
*U* unnamed namespace at line 43
boost/test/utils/runtime/cla/modifier.hpp:
*U* unnamed namespace at line 34
boost/test/utils/runtime/env/modifier.hpp:
*U* unnamed namespace at line 34
boost/test/utils/runtime/file/config_file.hpp:
*U* unnamed namespace at line 169
*U* unnamed namespace at line 64
*U* unnamed namespace at line 74
boost/test/utils/runtime/file/config_file_iterator.hpp:
*U* unnamed namespace at line 68
boost/test/utils/trivial_singleton.hpp:
*U* unnamed namespace at line 52
*U* unnamed namespace at line 61
libs/test/build/msvc71_proj/config_file_iterator_test.vcproj:
*N* name exceeds 31 characters
libs/test/doc/components/prg_exec_monitor/compilation.html:
*A* broken link: ../../../build/Jamfile
libs/test/doc/components/prg_exec_monitor/index.html:
*A* broken link: ../../../../../boost/test/cpp_main.hpp
libs/test/doc/components/test_tools/index.html:
*A* broken link: ../../tests/boost_check_equal_str.html
libs/test/doc/components/test_tools/reference/BOOST_CHECK_CLOSE.html:
*A* broken link: BOOST_CHECK_CLOSE_FRACTION.html
libs/test/doc/components/test_tools/reference/BOOST_CHECK_MESSAGE.html:
*A* broken link: BOOST_MESSAGE.html
libs/test/doc/components/test_tools/reference/BOOST_CHECK_SMALL.html:
*A* broken link: BOOST_CHECK_CLOSE_FRACTION.html
libs/test/doc/components/test_tools/reference/tools_list.html:
*A* broken link: ../../btl1.gif
*A* broken link: BOOST_CHECK_CLOSE_FRACTION.html
libs/test/doc/components/utf/compilation.html:
*A* broken link: ../../../build/Jamfile
libs/test/doc/components/utf/components/index.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/components/test_case/abstract_interface.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/auto_register_facility.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/boost_function_tc.html:
*A* broken link: ../../../../../../../boost/test/unit_test_suite_ex.hpp
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/class_tc.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/function_tc.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/index.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/param_boost_function_tc.html:
*A* broken link: ../../../../../../../boost/test/unit_test_suite_ex.hpp
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/param_class_tc.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/param_function_tc.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/tc_template.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_log/custom_log_formatter.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_log/index.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_result/index.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_suite/index.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/index.html:
*A* broken link: getting_started/index.html
libs/test/doc/components/utf/parameters/build_info.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/catch_system_errors.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/detect_memory_leaks.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/index.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/log_format.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/log_level.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/no_result_code.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/output_format.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/random.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/report_format.html:
*A* broken link: ../../../../../LICENSE_1_0.txt
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/report_level.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/show_progress.html:
*A* broken link: ../../btl1.gif
libs/test/doc/examples/unit_test_example1.html:
*A* broken link: ../../example/unit_test_example1.cpp
libs/test/doc/examples/unit_test_example2.html:
*A* broken link: ../../example/unit_test_example2.cpp
libs/test/doc/examples/unit_test_example3.html:
*A* broken link: ../../example/unit_test_example3.cpp
libs/test/doc/examples/unit_test_example4.html:
*A* broken link: ../../example/unit_test_example4.cpp
libs/test/doc/examples/unit_test_example5.html:
*A* broken link: ../../example/unit_test_example5.cpp
*A* broken link: ../../example/unit_test_example5.input
libs/test/doc/tests/auto_unit_test_test.html:
*A* broken link: ../../test/auto_unit_test_test.cpp
libs/test/doc/tests/auto_unit_test_test_mult.html:
*A* broken link: ../../test/auto_unit_test_test_mult1.cpp
*A* broken link: ../../test/auto_unit_test_test_mult2.cpp
libs/test/doc/tests/unit_test_suite_ex_test.html:
*A* broken link: ../../test/unit_test_suite_ex_test.cpp
libs/test/doc/tutorials/hello_the_testing_world.html:
*A* broken link: ../../../../../LICENSE_1_0.txt
*A* broken link: ../execution_monitor/index.html
libs/test/doc/tutorials/new_year_resolution.html:
*A* broken link: ../../../../../../LICENSE_1_0.txt
|type_traits|
libs/type_traits/cxx_type_traits.htm:
*A* unlinked file
1
0
Boost Regression test failures
Report time: 2006-11-07T10:59:43Z
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_6_4
borland-5_8_2
vc-6_5
3136 failures in 26 libraries (1509 are from non-broken platforms)
algorithm/minmax (0 of 2 failures are from non-broken platforms)
algorithm/string (0 of 12 failures are from non-broken platforms)
date_time (0 of 97 failures are from non-broken platforms)
disjoint_sets (0 of 2 failures are from non-broken platforms)
filesystem (0 of 13 failures are from non-broken platforms)
foreach (0 of 2 failures are from non-broken platforms)
iostreams (10 of 64 failures are from non-broken platforms)
iterator (0 of 26 failures are from non-broken platforms)
math (0 of 4 failures are from non-broken platforms)
mpl (4 of 110 failures are from non-broken platforms)
parameter (1 of 26 failures are from non-broken platforms)
program_options (7 of 35 failures are from non-broken platforms)
random (1 of 3 failures are from non-broken platforms)
range (0 of 16 failures are from non-broken platforms)
rational (0 of 2 failures are from non-broken platforms)
regex (1 of 4 failures are from non-broken platforms)
serialization (1477 of 2662 failures are from non-broken platforms)
signals (0 of 10 failures are from non-broken platforms)
spirit (1)
statechart (4)
test (0 of 6 failures are from non-broken platforms)
tokenizer (0 of 12 failures are from non-broken platforms)
tr1 (0 of 2 failures are from non-broken platforms)
utility (1 of 3 failures are from non-broken platforms)
variant (0 of 16 failures are from non-broken platforms)
xpressive (2)
Test failures marked with a (*) represent tests that failed on
platforms that are considered broken. They are likely caused by
misconfiguration by the regression tester or a failure in a core
library such as Test or Config.
|algorithm/minmax|
minmax_element: borland-5_6_4* borland-5_8_2*
|algorithm/string|
conv: borland-5_6_4* borland-5_8_2*
find: borland-5_6_4* borland-5_8_2*
join: borland-5_6_4* borland-5_8_2*
predicate: borland-5_6_4* borland-5_8_2*
replace: borland-5_6_4* borland-5_8_2*
split: borland-5_6_4* borland-5_8_2*
|date_time|
testc_local_adjustor: borland-5_6_4* borland-5_8_2*
testclock: borland-5_6_4* borland-5_8_2*
testcustom_time_zone: borland-5_8_2*
testdate: borland-5_6_4* borland-5_8_2*
testdate_dll: borland-5_6_4* borland-5_8_2*
testdate_duration: borland-5_6_4* borland-5_8_2*
testdate_duration_dll: borland-5_6_4* borland-5_8_2*
testdate_input_facet: borland-5_6_4* borland-5_8_2*
testdate_input_facet_dll: borland-5_6_4* borland-5_8_2*
testdate_iterator: borland-5_6_4* borland-5_8_2*
testdate_iterator_dll: borland-5_6_4* borland-5_8_2*
testdst_rules: borland-5_6_4* borland-5_8_2*
testdst_transition_day_rule: borland-5_6_4* borland-5_8_2*
testduration: borland-5_6_4* borland-5_8_2*
testfiletime_functions: borland-5_6_4* borland-5_8_2*
testformatters: borland-5_6_4* borland-5_8_2*
testformatters_dll: borland-5_6_4* borland-5_8_2*
testgenerators: borland-5_6_4* borland-5_8_2*
testgenerators_dll: borland-5_6_4* borland-5_8_2*
testgreg_cal: borland-5_6_4* borland-5_8_2*
testgreg_cal_dll: borland-5_6_4* borland-5_8_2*
testgreg_day: borland-5_6_4* borland-5_8_2*
testgreg_day_dll: borland-5_6_4* borland-5_8_2*
testgreg_duration_operators: borland-5_6_4* borland-5_8_2*
testgreg_durations: borland-5_6_4* borland-5_8_2*
testgreg_durations_dll: borland-5_6_4* borland-5_8_2*
testgreg_month: borland-5_6_4* borland-5_8_2*
testgreg_month_dll: borland-5_6_4* borland-5_8_2*
testgreg_serialize: borland-5_6_4* borland-5_8_2*
testgreg_serialize_dll: borland-5_6_4* borland-5_8_2*
testgreg_serialize_xml: borland-5_6_4* borland-5_8_2*
testgreg_year: borland-5_6_4* borland-5_8_2*
testgreg_year_dll: borland-5_6_4* borland-5_8_2*
testiterator: borland-5_6_4* borland-5_8_2*
testlocal_adjustor: borland-5_6_4* borland-5_8_2*
testmicrosec_time_clock: borland-5_6_4* borland-5_8_2*
testparse_time: borland-5_6_4* borland-5_8_2*
testperiod: borland-5_6_4* borland-5_8_2*
testperiod_dll: borland-5_6_4* borland-5_8_2*
testposix_time_zone: borland-5_8_2*
testtime: borland-5_6_4* borland-5_8_2*
testtime_formatters: borland-5_6_4* borland-5_8_2*
testtime_period: borland-5_6_4* borland-5_8_2*
testtime_serialize: borland-5_6_4* borland-5_8_2*
testtime_serialize_std_config: borland-5_6_4* borland-5_8_2*
testtime_serialize_xml: borland-5_6_4* borland-5_8_2*
testtime_serialize_xml_std_config: borland-5_6_4* borland-5_8_2*
testtz_database: borland-5_8_2*
testwcustom_time_zone: borland-5_6_4* borland-5_8_2*
testwposix_time_zone: borland-5_6_4* borland-5_8_2*
|disjoint_sets|
disjoint_set_test: borland-5_6_4* borland-5_8_2*
|filesystem|
convenience_test: borland-5_6_4* borland-5_8_2*
fstream_test: borland-5_6_4* borland-5_8_2* vc-6_5*
large_file_support_test: borland-5_6_4* borland-5_8_2*
operations_test: borland-5_6_4* borland-5_8_2*
path_test: borland-5_6_4* borland-5_8_2*
simple_ls: borland-5_6_4* borland-5_8_2*
|foreach|
noncopyable: borland-5_6_4* borland-5_8_2*
|iostreams|
array_test: borland-5_6_4* borland-5_8_2*
auto_close_test: borland-5_6_4* borland-5_8_2*
buffer_size_test: borland-5_6_4* borland-5_8_2*
bzip2_test: msvc-7.1 msvc-8.0
code_converter_test: borland-5_6_4* borland-5_8_2*
component_access_test: borland-5_6_4* borland-5_8_2*
compose_test: borland-5_8_2*
copy_test: borland-5_6_4* borland-5_8_2*
counter_test: borland-5_6_4* borland-5_8_2*
direct_adapter_test: borland-5_6_4* borland-5_8_2*
example_test: borland-5_6_4* borland-5_8_2* vc-6_5-stlport
file_descriptor_test: borland-5_6_4* borland-5_8_2* cw-9.4
file_test: borland-5_6_4* borland-5_8_2*
filtering_stream_test: borland-5_6_4* borland-5_8_2*
finite_state_filter_test: cw-9.4
flush_test: borland-5_6_4* borland-5_8_2*
gzip_test: msvc-7.1 msvc-8.0
invert_test: borland-5_6_4* borland-5_8_2*
line_filter_test: borland-5_6_4* borland-5_8_2*
mapped_file_test: borland-5_6_4* borland-5_8_2* cw-9.4
newline_test: borland-5_6_4* borland-5_8_2*
null_test: borland-5_6_4* borland-5_8_2*
pipeline_test: borland-5_6_4* borland-5_8_2*
regex_filter_test: borland-5_6_4* borland-5_8_2*
restrict_test: borland-5_6_4* borland-5_8_2*
seekable_file_test: borland-5_8_2*
seekable_filter_test: borland-5_6_4* borland-5_8_2*
stdio_filter_test: borland-5_6_4* borland-5_8_2*
symmetric_filter_test: borland-5_6_4* borland-5_8_2*
tee_test: borland-5_6_4* borland-5_8_2*
wide_stream_test: borland-5_6_4* borland-5_8_2*
zlib_test: msvc-7.1 msvc-8.0
|iterator|
concept_tests: borland-5_6_4* borland-5_8_2*
counting_iterator_test: borland-5_6_4* borland-5_8_2*
filter_iterator_test: borland-5_6_4* borland-5_8_2*
indirect_iterator_test: borland-5_6_4* borland-5_8_2*
interoperable: borland-5_6_4* borland-5_8_2*
iterator_adaptor_cc: borland-5_6_4* borland-5_8_2*
iterator_adaptor_test: borland-5_6_4* borland-5_8_2*
iterator_archetype_cc: borland-5_6_4* borland-5_8_2*
iterator_facade: borland-5_6_4* borland-5_8_2*
permutation_iterator_test: borland-5_6_4* borland-5_8_2*
reverse_iterator_test: borland-5_6_4* borland-5_8_2*
transform_iterator_test: borland-5_6_4* borland-5_8_2*
unit_tests: borland-5_6_4* borland-5_8_2*
|math|
octonion_test: borland-5_8_2*
quaternion_mult_incl_test: borland-5_8_2*
quaternion_test: borland-5_8_2*
special_functions_test: borland-5_8_2*
|mpl|
always: borland-5_6_4* borland-5_8_2*
apply_wrap: borland-5_8_2*
bind: borland-5_6_4* borland-5_8_2*
contains: borland-5_6_4* borland-5_8_2*
copy: borland-5_6_4* borland-5_8_2*
copy_if: borland-5_6_4* borland-5_8_2*
count: borland-5_6_4* borland-5_8_2*
count_if: borland-5_6_4* borland-5_8_2*
deque: borland-5_6_4* borland-5_8_2*
distance: borland-5_6_4* borland-5_8_2*
equal: borland-5_6_4* borland-5_8_2*
erase: borland-5_6_4* borland-5_8_2*
erase_range: borland-5_6_4* borland-5_8_2*
filter_view: borland-5_6_4* borland-5_8_2*
find: borland-5_6_4* borland-5_8_2*
find_if: borland-5_6_4* borland-5_8_2*
fold: borland-5_6_4* borland-5_8_2*
for_each: borland-5_6_4* borland-5_8_2*
identity: borland-5_6_4* borland-5_8_2*
index_of: borland-5_6_4* borland-5_8_2*
insert: borland-5_6_4* borland-5_8_2*
insert_range: borland-5_6_4* borland-5_8_2*
int: borland-5_8_2*
integral_c: borland-5_8_2*
is_placeholder: borland-5_6_4* borland-5_8_2*
joint_view: borland-5_6_4* borland-5_8_2*
lambda: borland-5_6_4* borland-5_8_2*
lambda_args: borland-5_6_4* borland-5_8_2*
list: borland-5_6_4* borland-5_8_2*
list_c: borland-5_6_4* borland-5_8_2*
lower_bound: borland-5_6_4* borland-5_8_2*
max_element: borland-5_6_4* borland-5_8_2*
multiset: gcc-4.0.3_linux gcc-4.1.0_linux gcc-4.1.0_linux_x86_64 gcc-4.1.1_sunos_i86pc
pair_view: borland-5_6_4* borland-5_8_2*
partition: borland-5_6_4* borland-5_8_2*
pop_front: borland-5_6_4* borland-5_8_2*
push_front: borland-5_6_4* borland-5_8_2*
range_c: borland-5_6_4* borland-5_8_2*
remove: borland-5_6_4* borland-5_8_2*
remove_if: borland-5_6_4* borland-5_8_2*
replace: borland-5_6_4* borland-5_8_2*
replace_if: borland-5_6_4* borland-5_8_2*
reverse: borland-5_6_4* borland-5_8_2*
same_as: borland-5_6_4* borland-5_8_2*
single_view: borland-5_6_4* borland-5_8_2*
size: borland-5_6_4* borland-5_8_2*
size_t: borland-5_8_2*
sort: borland-5_6_4* borland-5_8_2*
stable_partition: borland-5_6_4* borland-5_8_2*
transform: borland-5_6_4* borland-5_8_2*
transform_view: borland-5_6_4* borland-5_8_2*
unique: borland-5_6_4* borland-5_8_2*
unpack_args: borland-5_6_4* borland-5_8_2*
upper_bound: borland-5_6_4* borland-5_8_2*
vector: borland-5_6_4* borland-5_8_2*
vector_c: borland-5_6_4* borland-5_8_2*
|parameter|
basics: borland-5_6_4* borland-5_8_2*
compose: borland-5_6_4* borland-5_8_2*
deduced: borland-5_6_4* borland-5_8_2*
deduced_dependent_predicate: borland-5_6_4* borland-5_8_2*
duplicates: gcc-4.1.1_sunos_i86pc
earwicker: borland-5_6_4* borland-5_8_2*
efficiency: borland-5_6_4* borland-5_8_2*
macros: borland-5_6_4* borland-5_8_2*
mpl: borland-5_6_4* borland-5_8_2*
ntp: borland-5_6_4* borland-5_8_2*
preprocessor: borland-5_6_4* borland-5_8_2*
sfinae: borland-5_6_4*
singular: borland-5_6_4* borland-5_8_2*
tutorial: borland-5_6_4* borland-5_8_2*
|program_options|
cmdline_test: borland-5_6_4* borland-5_8_2*
cmdline_test_dll: borland-5_6_4* borland-5_8_2* cw-9.4
options_description_test: borland-5_6_4* borland-5_8_2*
options_description_test_dll: borland-5_6_4* borland-5_8_2* cw-9.4
parsers_test: borland-5_6_4* borland-5_8_2*
parsers_test_dll: borland-5_6_4* borland-5_8_2* cw-9.4
positional_options_test: borland-5_6_4* borland-5_8_2*
positional_options_test_dll: borland-5_6_4* borland-5_8_2* cw-9.4
unicode_test: borland-5_6_4* borland-5_8_2*
unicode_test_dll: borland-5_6_4* borland-5_8_2* cw-9.4
variable_map_test: borland-5_6_4* borland-5_8_2*
variable_map_test_dll: borland-5_6_4* borland-5_8_2* cw-9.4
winmain: borland-5_6_4* borland-5_8_2*
winmain_dll: borland-5_6_4* borland-5_8_2* cw-9.4
|random|
random_demo: borland-5_6_4* borland-5_8_2*
random_test: intel-linux-9.0
|range|
algorithm_example: borland-5_6_4* borland-5_8_2*
const_ranges: borland-5_6_4* borland-5_8_2*
extension_mechanism: borland-5_6_4* borland-5_8_2*
iterator_pair: borland-5_6_4* borland-5_8_2*
iterator_range: borland-5_6_4* borland-5_8_2*
reversible_range: borland-5_6_4* borland-5_8_2*
std_container: borland-5_6_4* borland-5_8_2*
sub_range: borland-5_6_4* borland-5_8_2*
|rational|
rational_test: borland-5_6_4* borland-5_8_2*
|regex|
concept_check: qcc-3.3.5_cpp
grep: borland-5_6_4* borland-5_8_2*
unicode_iterator_test: borland-5_8_2*
|serialization|
test_array_binary_archive: borland-5_6_4* borland-5_8_2*
test_array_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_array_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_array_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_array_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_array_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_array_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_array_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_array_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_array_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_binary_binary_archive: borland-5_6_4* borland-5_8_2*
test_binary_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_binary_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_binary_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_binary_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_binary_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_binary_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_binary_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_binary_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_binary_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_class_info_load_binary_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport vc-7_0
test_class_info_load_binary_archive_dll: borland-5_6_4* borland-5_8_2* vc-6_5* vc-7_0
test_class_info_load_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport vc-7_0
test_class_info_load_text_archive_dll: borland-5_6_4* borland-5_8_2* vc-6_5* vc-7_0
test_class_info_load_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport vc-7_0
test_class_info_load_text_warchive_dll: borland-5_6_4* borland-5_8_2* vc-7_0
test_class_info_load_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport vc-7_0
test_class_info_load_xml_archive_dll: borland-5_6_4* borland-5_8_2* vc-6_5* vc-7_0
test_class_info_load_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport vc-7_0
test_class_info_load_xml_warchive_dll: borland-5_6_4* borland-5_8_2* vc-6_5* vc-7_0
test_class_info_save_binary_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_class_info_save_binary_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_class_info_save_text_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_class_info_save_text_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_class_info_save_text_warchive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_class_info_save_text_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_class_info_save_xml_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_class_info_save_xml_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_class_info_save_xml_warchive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_class_info_save_xml_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_codecvt_null: borland-5_6_4* borland-5_8_2*
test_contained_class_binary_archive: borland-5_6_4* borland-5_8_2*
test_contained_class_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_contained_class_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_contained_class_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_contained_class_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_contained_class_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_contained_class_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_contained_class_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_contained_class_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_contained_class_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_cyclic_ptrs_binary_archive: borland-5_6_4* borland-5_8_2*
test_cyclic_ptrs_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_cyclic_ptrs_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_cyclic_ptrs_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_cyclic_ptrs_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_cyclic_ptrs_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_cyclic_ptrs_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_cyclic_ptrs_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_cyclic_ptrs_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_cyclic_ptrs_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_delete_pointer_binary_archive: borland-5_6_4* borland-5_8_2*
test_delete_pointer_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_delete_pointer_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_delete_pointer_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_delete_pointer_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_delete_pointer_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_delete_pointer_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_delete_pointer_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_delete_pointer_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_delete_pointer_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_demo: borland-5_6_4* borland-5_8_2*
test_demo_auto_ptr: borland-5_6_4* borland-5_8_2*
test_demo_auto_ptr_dll: borland-5_6_4* borland-5_8_2*
test_demo_dll: borland-5_6_4* borland-5_8_2*
test_demo_exception: borland-5_6_4* borland-5_8_2*
test_demo_exception_dll: borland-5_6_4* borland-5_8_2*
test_demo_fast_archive: borland-5_6_4* borland-5_8_2*
test_demo_fast_archive_dll: borland-5_6_4* borland-5_8_2*
test_demo_pimpl: borland-5_6_4* borland-5_8_2*
test_demo_pimpl_dll: borland-5_6_4* borland-5_8_2*
test_demo_polymorphic: borland-5_6_4* borland-5_8_2*
test_demo_polymorphic_dll: borland-5_6_4* borland-5_8_2*
test_demo_portable_archive: borland-5_6_4* borland-5_8_2*
test_demo_portable_archive_dll: borland-5_8_2*
test_demo_shared_ptr: borland-5_6_4* borland-5_8_2*
test_demo_shared_ptr_dll: borland-5_6_4* borland-5_8_2*
test_demo_xml: borland-5_6_4* borland-5_8_2*
test_demo_xml_dll: borland-5_6_4* borland-5_8_2*
test_demo_xml_load: borland-5_6_4* borland-5_8_2*
test_demo_xml_load_dll: borland-5_6_4* borland-5_8_2*
test_demo_xml_save: borland-5_6_4* borland-5_8_2*
test_demo_xml_save_dll: borland-5_6_4* borland-5_8_2*
test_deque_binary_archive: borland-5_6_4* borland-5_8_2*
test_deque_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_deque_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_deque_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_deque_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_deque_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_deque_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_deque_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_deque_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_deque_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_derived_binary_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_derived_binary_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_derived_class_binary_archive: borland-5_6_4* borland-5_8_2*
test_derived_class_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_derived_class_ptr_binary_archive: borland-5_6_4* borland-5_8_2*
test_derived_class_ptr_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_derived_class_ptr_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_derived_class_ptr_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_derived_class_ptr_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_derived_class_ptr_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_derived_class_ptr_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_derived_class_ptr_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_derived_class_ptr_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_derived_class_ptr_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_derived_class_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_derived_class_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_derived_class_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_derived_class_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_derived_class_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_derived_class_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_derived_class_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_derived_class_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_derived_text_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_derived_text_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_derived_text_warchive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_derived_text_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_derived_xml_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_derived_xml_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_derived_xml_warchive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_derived_xml_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_diamond_binary_archive: borland-5_6_4* borland-5_8_2*
test_diamond_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0
test_diamond_text_archive: borland-5_6_4* borland-5_8_2*
test_diamond_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0
test_diamond_text_warchive: borland-5_6_4* borland-5_8_2*
test_diamond_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0
test_diamond_xml_archive: borland-5_6_4* borland-5_8_2*
test_diamond_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0
test_diamond_xml_warchive: borland-5_6_4* borland-5_8_2*
test_diamond_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0
test_exported_binary_archive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_exported_binary_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_exported_text_archive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_exported_text_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_exported_text_warchive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_exported_text_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_exported_xml_archive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_exported_xml_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_exported_xml_warchive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_exported_xml_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_iterators: borland-5_6_4* borland-5_8_2*
test_iterators_base64: borland-5_6_4* borland-5_8_2*
test_list_binary_archive: borland-5_6_4* borland-5_8_2*
test_list_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_list_ptrs_binary_archive: borland-5_6_4* borland-5_8_2*
test_list_ptrs_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_list_ptrs_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_list_ptrs_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_list_ptrs_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_list_ptrs_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_list_ptrs_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_list_ptrs_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_list_ptrs_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_list_ptrs_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_list_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_list_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_list_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_list_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_list_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_list_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_list_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_list_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_map_binary_archive: borland-5_6_4* borland-5_8_2*
test_map_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0
test_map_text_archive: borland-5_6_4* borland-5_8_2*
test_map_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0
test_map_text_warchive: borland-5_6_4* borland-5_8_2*
test_map_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0
test_map_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_map_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_map_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_map_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_mi_binary_archive: borland-5_6_4* borland-5_8_2*
test_mi_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-7_0
test_mi_text_archive: borland-5_6_4* borland-5_8_2*
test_mi_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-7_0
test_mi_text_warchive: borland-5_6_4* borland-5_8_2*
test_mi_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-7_0
test_mi_xml_archive: borland-5_6_4* borland-5_8_2*
test_mi_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-7_0
test_mi_xml_warchive: borland-5_6_4* borland-5_8_2*
test_mi_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-7_0
test_mult_archive_types: borland-5_6_4* borland-5_8_2*
test_mult_archive_types_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0
test_multiple_ptrs_binary_archive: borland-5_6_4* borland-5_8_2*
test_multiple_ptrs_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_multiple_ptrs_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_multiple_ptrs_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_multiple_ptrs_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_multiple_ptrs_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_multiple_ptrs_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_multiple_ptrs_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_multiple_ptrs_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_multiple_ptrs_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_no_rtti_binary_archive: darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_no_rtti_binary_archive_dll: darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_no_rtti_text_archive: darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_no_rtti_text_archive_dll: darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_no_rtti_text_warchive: darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_no_rtti_text_warchive_dll: darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_no_rtti_xml_archive: darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_no_rtti_xml_archive_dll: darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_no_rtti_xml_warchive: darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_no_rtti_xml_warchive_dll: darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_non_default_ctor2_binary_archive: borland-5_6_4* borland-5_8_2*
test_non_default_ctor2_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_non_default_ctor2_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_non_default_ctor2_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_non_default_ctor2_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_non_default_ctor2_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_non_default_ctor2_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_non_default_ctor2_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_non_default_ctor2_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_non_default_ctor2_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_non_default_ctor_binary_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_non_default_ctor_binary_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_non_default_ctor_text_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_non_default_ctor_text_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_non_default_ctor_text_warchive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_non_default_ctor_text_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_non_default_ctor_xml_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_non_default_ctor_xml_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_non_default_ctor_xml_warchive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_non_default_ctor_xml_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_non_intrusive_binary_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_non_intrusive_binary_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_non_intrusive_text_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_non_intrusive_text_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_non_intrusive_text_warchive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_non_intrusive_text_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_non_intrusive_xml_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_non_intrusive_xml_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_non_intrusive_xml_warchive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_non_intrusive_xml_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_null_ptr_binary_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_null_ptr_binary_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_null_ptr_text_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_null_ptr_text_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_null_ptr_text_warchive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_null_ptr_text_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_null_ptr_xml_archive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_null_ptr_xml_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_null_ptr_xml_warchive: borland-5_6_4* borland-5_8_2* cw-9.4 darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_null_ptr_xml_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_nvp_binary_archive: borland-5_6_4* borland-5_8_2*
test_nvp_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_nvp_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_nvp_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_nvp_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_nvp_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_nvp_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_nvp_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_nvp_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_nvp_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_object_binary_archive: borland-5_6_4* borland-5_8_2*
test_object_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_object_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_object_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_object_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_object_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_object_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_object_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_object_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_object_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_optional_binary_archive: borland-5_6_4* borland-5_8_2*
test_optional_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_optional_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_optional_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_optional_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_optional_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_optional_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_optional_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_optional_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_optional_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_polymorphic_binary_archive: borland-5_6_4* borland-5_8_2*
test_polymorphic_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_polymorphic_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_polymorphic_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_polymorphic_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_polymorphic_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_polymorphic_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_polymorphic_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_polymorphic_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_polymorphic_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_primitive_binary_archive: borland-5_6_4* borland-5_8_2*
test_primitive_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_primitive_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_primitive_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_primitive_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_primitive_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_primitive_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_primitive_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_primitive_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_primitive_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_private_ctor: borland-5_6_4* borland-5_8_2*
test_private_ctor_dll: borland-5_6_4* borland-5_8_2*
test_recursion_binary_archive: borland-5_6_4* borland-5_8_2*
test_recursion_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_recursion_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_recursion_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_recursion_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_recursion_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_recursion_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_recursion_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_recursion_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_recursion_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_registered_binary_archive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_registered_binary_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_registered_text_archive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_registered_text_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_registered_text_warchive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_registered_text_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_registered_xml_archive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_registered_xml_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_registered_xml_warchive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_registered_xml_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_reset_object_address: borland-5_6_4* borland-5_8_2* vc-7_0
test_reset_object_address_dll: borland-5_6_4* borland-5_8_2* vc-7_0
test_set_binary_archive: borland-5_8_2*
test_set_binary_archive_dll: borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_set_text_archive: borland-5_8_2* vc-6_5*
test_set_text_archive_dll: borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_set_text_warchive: borland-5_8_2* vc-6_5*
test_set_text_warchive_dll: borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_set_xml_archive: borland-5_8_2* vc-6_5*
test_set_xml_archive_dll: borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_set_xml_warchive: borland-5_8_2* vc-6_5*
test_set_xml_warchive_dll: borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_shared_ptr_132_binary_archive: borland-5_6_4* borland-5_8_2*
test_shared_ptr_132_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_shared_ptr_132_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_shared_ptr_132_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_shared_ptr_132_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_shared_ptr_132_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_shared_ptr_132_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_shared_ptr_132_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_shared_ptr_132_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_shared_ptr_132_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_shared_ptr_binary_archive: borland-5_6_4* borland-5_8_2*
test_shared_ptr_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_shared_ptr_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_shared_ptr_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_shared_ptr_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_shared_ptr_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_shared_ptr_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_shared_ptr_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_shared_ptr_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_shared_ptr_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_simple_class_binary_archive: borland-5_6_4* borland-5_8_2*
test_simple_class_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_simple_class_ptr_binary_archive: borland-5_6_4* borland-5_8_2*
test_simple_class_ptr_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_simple_class_ptr_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_simple_class_ptr_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_simple_class_ptr_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_simple_class_ptr_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_simple_class_ptr_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_simple_class_ptr_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_simple_class_ptr_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_simple_class_ptr_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_simple_class_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_simple_class_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_simple_class_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_simple_class_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_simple_class_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_simple_class_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_simple_class_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_simple_class_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_split_binary_archive: borland-5_6_4* borland-5_8_2*
test_split_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_split_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_split_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_split_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_split_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_split_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_split_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_split_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_split_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_tracking_binary_archive: borland-5_6_4* borland-5_8_2*
test_tracking_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_tracking_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_tracking_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_tracking_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_tracking_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_tracking_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_tracking_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_tracking_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_tracking_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_traits_pass: vc-6_5* vc-6_5-stlport
test_unregistered_binary_archive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_unregistered_binary_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_unregistered_text_archive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_unregistered_text_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_unregistered_text_warchive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_unregistered_text_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_unregistered_xml_archive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-6_5-stlport vc-7_0
test_unregistered_xml_archive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp qcc-3.3.5_gpp vc-6_5* vc-7_0
test_unregistered_xml_warchive: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-6_5-stlport vc-7_0
test_unregistered_xml_warchive_dll: borland-5_6_4* borland-5_8_2* darwin-4.0.1 gcc-4.1.1_sunos_i86pc intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 qcc-3.3.5_cpp vc-6_5* vc-7_0
test_utf8_codecvt: borland-5_6_4* borland-5_8_2*
test_variant_binary_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport vc-7_0
test_variant_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_variant_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport vc-7_0
test_variant_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_variant_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport vc-7_0
test_variant_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_variant_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_variant_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_variant_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_variant_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_vector_binary_archive: borland-5_6_4* borland-5_8_2*
test_vector_binary_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_vector_text_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_vector_text_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_vector_text_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_vector_text_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_vector_xml_archive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_vector_xml_archive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_vector_xml_warchive: borland-5_6_4* borland-5_8_2* vc-6_5* vc-6_5-stlport
test_vector_xml_warchive_dll: borland-5_6_4* borland-5_8_2* intel-vc71-win-9.1 intel-vc8-win-9.1 msvc-8.0 vc-6_5* vc-7_0
test_void_cast: borland-5_6_4* borland-5_8_2*
test_void_cast_dll: borland-5_6_4* borland-5_8_2*
|signals|
dead_slot_test: borland-5_6_4* borland-5_8_2*
deletion_test: borland-5_6_4* borland-5_8_2*
ordering_test: borland-5_6_4* borland-5_8_2*
signal_n_test: borland-5_6_4* borland-5_8_2*
trackable_test: borland-5_6_4* borland-5_8_2*
|spirit|
scanner_value_type_tests: gcc-4.1.0_linux
|statechart|
TransitionTestBoth: qcc-3.3.5_gpp qcc-3.3.5_gpp
TransitionTestRelaxed: qcc-3.3.5_gpp qcc-3.3.5_gpp
|test|
basic_cstring_test: borland-5_6_4* borland-5_8_2*
ifstream_line_iterator_test: borland-5_6_4* borland-5_8_2*
test_case_template_test: borland-5_6_4* borland-5_8_2*
|tokenizer|
examples: borland-5_6_4* borland-5_8_2*
simple_example_1: borland-5_6_4* borland-5_8_2*
simple_example_2: borland-5_6_4* borland-5_8_2*
simple_example_3: borland-5_6_4* borland-5_8_2*
simple_example_4: borland-5_6_4* borland-5_8_2*
simple_example_5: borland-5_6_4* borland-5_8_2*
|tr1|
std_test_tr1_include: borland-5_8_2*
test_tr1_include: borland-5_8_2*
|utility|
operators_test: gcc-3.4.5_linux_x86_64
shared_iterator_test: borland-5_6_4* borland-5_8_2*
|variant|
variant_comparison_test: borland-5_6_4* borland-5_8_2*
variant_reference_test: borland-5_6_4* borland-5_8_2*
variant_test2: borland-5_6_4* borland-5_8_2*
variant_test3: borland-5_6_4* borland-5_8_2*
variant_test4: borland-5_6_4* borland-5_8_2*
variant_test6: borland-5_6_4* borland-5_8_2*
variant_test7: borland-5_6_4* borland-5_8_2*
variant_test8: borland-5_6_4* borland-5_8_2*
|xpressive|
misc1: qcc-3.3.5_cpp qcc-3.3.5_gpp
1
0
I'm currently re-reading all of your postings and reviews related to GIL
and will post the official announcement by the middle of this month.
In the mean time, I am pleased to announce that the GIL graphics library,
developed by Lubomir Bourdev and others at Adobe, has been accepted
as a boost library. Thanks to those who submitted reviews; your opinions
matter and will assist the GIL developers to improve the library even
further.
Ideally, a Boost review should include comments from a
wide variety of developers, including those with deep domain expertise.
We got that in this review, which is very encouraging.
A number of issues were brought up in the review, many of which were
very technical in nature, requring a deep knowledge of color theory,
not something many of us have. Many other issues related to the design
of the library and the unusual documentation style were discussed. I will
try to summarize these issues in my "review manager" report which will
follow in a couple of weeks. Thanks again to all involved.
Tom Brinkman
Review Manager
2
1

06 Nov '06
Dear Boosters
If there are no objections before November 11th, 0:00 UTC, I will fix
all the then remaining license & copyright issues under boost/people. A
fixed example page can be found here:
http://www.boost-consulting.org/boost/people/andreas_huber.html
(Of course, copyright will be attributed to the person presented on each
page)
Also, all pages will be checked for HTML validity and if necessary
corrected accordingly.
--
Andreas Huber
When replying by private email, please remove the words spam and trap
from the address shown in the header.
3
2
All,
I am interested in using boost::variant to represent various field types in
a performance-critical piece of software. I need the ability to perform
nontrivial operations on fields, and would like to embed the loop within the
visitor portion of the code for performance reasons.
As a simple example, say I have
> typedef std::vector<double> A;
> typedef std::vector<int> B;
> typedef boost::variant< A, B, ... > FieldVariant;
>
> FieldVariant x, y, z;
> // assign x, y ...
> z = sqrt(x)+x*y+5.38*y^2.0;
Here I could overload the ³+² operator for various types in the
FieldVariant. The overloaded + operator would implement a binary visitor
which would loop over the entries and sum them (remember that the types in
the variant are vectors of objects). The same thing could be done for other
operators. This is highly inefficient, however, since it requires multiple
loops and multiple step assembly of z.
What I would like is a way to compute ³z² in a highly efficient manner. The
binary visitor does not allow this
Is there a good way to extend boost::variant to support efficient operations
as outlined above?
James
1
0
I think it would be useful to add the following features to shared_ptr:
1. Support for aliasing: if I have a shared_ptr<T> pt, to get a
shared_ptr<Y> py (where T and Y are possibly unrelated types) such that pt
and py share ownership. For example, if T is an array of elements of type Y,
with this feature pointing an element from the array through a shared_ptr<Y>
would keep the entire array afloat. Similar example is being able to point
through a shared_ptr<Y> to a member of an object of class T, which would
keep the entire T object afloat.
2. Support for obtaining (as a void *) the address of the original object
passed to shared_ptr when the object was first created. That is, if we have
a shared_ptr<T> pt( new T ), which is later converted to a shared_ptr<Y> py,
I can call py.most_derived_ptr() to obtain the pointer returned by "new T"
as a void *. Note that in general, most_derived_ptr has different semantics
than dynamic_cast<void *>(py.get()): most_derived_ptr returns the same
pointer that the deleter sees, while the dynamic_cast works with the pointer
contained in the shared_ptr object. Also, dynamic_cast<void *>(pt.get())
requires that T is polymorphic, and shared_ptr has been carefuly designed to
avoid this requirement.
3. Support for obtaining the std::type_info of the original object.
I have not done any research on this, and it seems to me that these features
are a natural extension of the shared_ptr framework so it's likely that
others have had similar ideas before me. If anyone has experience with
implementing or using these features, I'm very interested to get some
feedback.
Thanks,
Emil Dotchevski
4
7

[Boost-bugs] [ boost-Patches-1551992 ] [shared_ptr] support for STLport 5's no-iostreams mode
by SourceForge.net 06 Nov '06
by SourceForge.net 06 Nov '06
06 Nov '06
Patches item #1551992, was opened at 2006-09-04 16:41
Message generated for change (Comment added) made by pdimov
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=307586&aid=1551992&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: smart_ptr
Group: None
>Status: Pending
>Resolution: Accepted
Priority: 5
Private: No
Submitted By: Michael Fink (vividos)
Assigned to: Peter Dimov (pdimov)
Summary: [shared_ptr] support for STLport 5's no-iostreams mode
Initial Comment:
In STLport there is a mode called no-iostreams mode.
When the define _STLP_NO_IOSTREAMS is used, nothing of
the iostreams-part of the Standard C++ Library can be
used, and including the headers fails with an error.
The advantage of this mode is that the user doesn't
have to link against a built library, all STLport code
is inline.
Unfortunately the shared_ptr cannot be used in this
mode, since an operator<< is defined in shared_ptr.hpp.
This patch ifdef's out this operator when
_STLP_NO_IOSTREAMS symbol is defined (and it does the
same with intrusive_ptr.hpp). The patch is against the
1.34 branch of CVS.
----------------------------------------------------------------------
>Comment By: Peter Dimov (pdimov)
Date: 2006-11-06 19:27
Message:
Logged In: YES
user_id=305912
Applied to 1.34 and HEAD.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=307586&aid=1551992&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
Boost Inspection Report
Run Date: 17:07:51 UTC, Monday 06 November 2006
An inspection program <http://www.boost.org/tools/inspect/index.html>
checks each file in the current Boost CVS for various problems,
generating this as output. Problems detected include tabs in files,
missing copyrights, broken URL's, and similar misdemeanors.
Totals:
11673 files scanned
906 directories scanned (including root)
157 problems reported
Problem counts:
0 files with invalid line endings
0 bookmarks with invalid characters
3 invalid urls
89 broken links
22 unlinked files
7 file/directory names issues
1 files with tabs
0 violations of the Boost min/max guidelines
35 usages of unnamed namespaces in headers (including .ipp files)
Summary:
archive (3)
bind (1)
boost-root (1)
build (3)
date_time (1)
doc (2)
filesystem (36)
graph (3)
iostreams (2)
lambda (3)
mpl (1)
multi_array (2)
parameter (2)
ptr_container (1)
regex (1)
regression (13)
serialization (1)
signals (1)
test (79)
type_traits (1)
Details:
*R* invalid (cr only) line-ending
*A* invalid bookmarks, invalid urls, broken links, unlinked files
*N* file/directory names issues
*T* tabs in file
*M* uses of min or max that have not been protected from the min/max macros, or unallowed #undef-s
*U* unnamed namespace in header
|archive|
boost/archive/basic_streambuf_locale_saver.hpp:
*N* name exceeds 31 characters
boost/archive/impl/xml_wiarchive_impl.ipp:
*U* unnamed namespace at line 53
boost/archive/iterators/remove_whitespace.hpp:
*U* unnamed namespace at line 57
|bind|
boost/bind/placeholders.hpp:
*U* unnamed namespace at line 25
|boost-root|
index.htm:
*A* broken link: ../doc/html/signals.html
|build|
tools/build/v1/variables.html:
*A* unlinked file
tools/build/v2/example/make/main.cpp.pro:
*N* name contains more than one dot character ('.')
tools/build/v2/test/test_system.html:
*A* unlinked file
|date_time|
libs/date_time/xmldoc/date_time_docs_howto.html:
*A* unlinked file
|doc|
doc/html/boost_math/inverse_complex.html:
*A* unlinked file
doc/html/jam.html:
*A* unlinked file
|filesystem|
libs/filesystem/doc/do-list.htm:
*A* invalid URL (hardwired file): file://?/
*A* invalid URL (hardwired file): file://?/UNC/
libs/filesystem/doc/i18n.html:
*A* broken link: convenience.htm#basic_recursive_directory_iterator
*A* broken link: exception.htm
*A* broken link: operations.htm
*A* broken link: operations.htm#Do-the-right-thing
*A* broken link: operations.htm#is_directory
*A* broken link: operations.htm#is_file
*A* broken link: operations.htm#status
libs/filesystem/doc/index.htm:
*A* broken link: convenience.htm
*A* broken link: fstream.htm
*A* broken link: operations.htm#create_directory
*A* broken link: operations.htm#create_hard_link
*A* broken link: operations.htm#current_path
*A* broken link: operations.htm#directory_iterator
*A* broken link: operations.htm#equivalent
*A* broken link: operations.htm#file_size
*A* broken link: operations.htm#initial_path
*A* broken link: operations.htm#is_file
*A* broken link: operations.htm#is_symlink
*A* broken link: operations.htm#status
*A* broken link: operations.htm#symlink_status
*A* broken link: path.htm#Canonical
*A* broken link: path.htm#Grammar
*A* broken link: path.htm#Normalized
*A* broken link: path.htm#default_name_check
*A* broken link: path.htm#name_check_mechanism
*A* broken link: path.htm#normalize
*A* broken link: path.htm#operator_eq
*A* broken link: path.htm#synopsis
libs/filesystem/doc/portability_guide.htm:
*A* broken link: path.htm#name_check_typedef
libs/filesystem/doc/tr2_proposal.html:
*A* invalid URL (hardwired file): file:///C|/boost/site/libs/filesystem/doc/operations.htm#complete_note
|graph|
boost/graph/maximum_cardinality_matching.hpp:
*N* name exceeds 31 characters
libs/graph/doc/lengauer_tarjan_dominator_tree.htm:
*N* name exceeds 31 characters
libs/graph/doc/sorted_erdos_renyi_generator.html:
*N* name exceeds 31 characters
|iostreams|
libs/iostreams/doc/acknowledgments.html:
*A* unlinked file
libs/iostreams/doc/concepts/multi-character.html:
*A* unlinked file
|lambda|
boost/lambda/core.hpp:
*U* unnamed namespace at line 62
boost/lambda/detail/lambda_functors.hpp:
*U* unnamed namespace at line 25
boost/lambda/exceptions.hpp:
*U* unnamed namespace at line 24
|mpl|
boost/mpl/alias.hpp:
*U* unnamed namespace at line 17
|multi_array|
boost/multi_array/base.hpp:
*U* unnamed namespace at line 69
libs/multi_array/test/generative_tests.hpp:
*U* unnamed namespace at line 57
|parameter|
libs/parameter/doc/html/python.html:
*A* broken link: tag::x(int
*A* broken link: tag::y*(int
|ptr_container|
libs/ptr_container/doc/tutorial_example.html:
*A* unlinked file
|regex|
libs/regex/performance/input.html:
*A* unlinked file
|regression|
regression/.htaccess:
*N* leading character of ".htaccess" is not alphabetic
tools/regression/xsl_reports/xsl/html/issues_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/library_developer_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/library_user_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/make_tinyurl.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/summary_developer_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/html/summary_user_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/issues_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/library_developer_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/library_user_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/make_tinyurl.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/summary_developer_legend.html:
*A* unlinked file
tools/regression/xsl_reports/xsl/v2/html/summary_user_legend.html:
*A* unlinked file
|serialization|
libs/serialization/src/basic_xml_grammar.ipp:
*U* unnamed namespace at line 43
|signals|
boost/signals/detail/named_slot_map.hpp:
*T*
|test|
boost/test/floating_point_comparison.hpp:
*U* unnamed namespace at line 206
*U* unnamed namespace at line 228
boost/test/impl/cpp_main.ipp:
*U* unnamed namespace at line 42
boost/test/impl/exception_safety.ipp:
*U* unnamed namespace at line 400
boost/test/impl/framework.ipp:
*U* unnamed namespace at line 199
boost/test/impl/plain_report_formatter.ipp:
*U* unnamed namespace at line 45
boost/test/impl/progress_monitor.ipp:
*U* unnamed namespace at line 38
boost/test/impl/results_collector.ipp:
*U* unnamed namespace at line 106
boost/test/impl/results_reporter.ipp:
*U* unnamed namespace at line 48
boost/test/impl/unit_test_log.ipp:
*U* unnamed namespace at line 79
boost/test/impl/unit_test_monitor.ipp:
*U* unnamed namespace at line 35
boost/test/impl/unit_test_parameters.ipp:
*U* unnamed namespace at line 50
boost/test/results_collector.hpp:
*U* unnamed namespace at line 40
boost/test/test_tools.hpp:
*U* unnamed namespace at line 255
boost/test/utils/iterator/token_iterator.hpp:
*U* unnamed namespace at line 166
boost/test/utils/named_params.hpp:
*U* unnamed namespace at line 216
boost/test/utils/runtime/cla/dual_name_parameter.ipp:
*U* unnamed namespace at line 43
boost/test/utils/runtime/cla/modifier.hpp:
*U* unnamed namespace at line 34
boost/test/utils/runtime/env/modifier.hpp:
*U* unnamed namespace at line 34
boost/test/utils/runtime/file/config_file.hpp:
*U* unnamed namespace at line 169
*U* unnamed namespace at line 64
*U* unnamed namespace at line 74
boost/test/utils/runtime/file/config_file_iterator.hpp:
*U* unnamed namespace at line 68
boost/test/utils/trivial_singleton.hpp:
*U* unnamed namespace at line 52
*U* unnamed namespace at line 61
libs/test/build/msvc71_proj/config_file_iterator_test.vcproj:
*N* name exceeds 31 characters
libs/test/doc/components/prg_exec_monitor/index.html:
*A* broken link: ../../../../../boost/test/cpp_main.hpp
libs/test/doc/components/test_tools/index.html:
*A* broken link: ../../tests/boost_check_equal_str.html
libs/test/doc/components/test_tools/reference/BOOST_CHECK_CLOSE.html:
*A* broken link: BOOST_CHECK_CLOSE_FRACTION.html
libs/test/doc/components/test_tools/reference/BOOST_CHECK_MESSAGE.html:
*A* broken link: BOOST_MESSAGE.html
libs/test/doc/components/test_tools/reference/BOOST_CHECK_SMALL.html:
*A* broken link: BOOST_CHECK_CLOSE_FRACTION.html
libs/test/doc/components/test_tools/reference/tools_list.html:
*A* broken link: ../../btl1.gif
*A* broken link: BOOST_CHECK_CLOSE_FRACTION.html
libs/test/doc/components/utf/components/index.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/components/test_case/abstract_interface.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/auto_register_facility.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/boost_function_tc.html:
*A* broken link: ../../../../../../../boost/test/unit_test_suite_ex.hpp
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/class_tc.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/function_tc.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/index.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/param_boost_function_tc.html:
*A* broken link: ../../../../../../../boost/test/unit_test_suite_ex.hpp
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/param_class_tc.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/param_function_tc.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_case/tc_template.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_log/custom_log_formatter.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_log/index.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_result/index.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/components/test_suite/index.html:
*A* broken link: ../../../btl1.gif
libs/test/doc/components/utf/index.html:
*A* broken link: getting_started/index.html
libs/test/doc/components/utf/parameters/build_info.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/catch_system_errors.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/detect_memory_leaks.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/index.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/log_format.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/log_level.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/no_result_code.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/output_format.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/random.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/report_format.html:
*A* broken link: ../../../../../LICENSE_1_0.txt
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/report_level.html:
*A* broken link: ../../btl1.gif
libs/test/doc/components/utf/parameters/show_progress.html:
*A* broken link: ../../btl1.gif
libs/test/doc/examples/unit_test_example1.html:
*A* broken link: ../../example/unit_test_example1.cpp
libs/test/doc/examples/unit_test_example2.html:
*A* broken link: ../../example/unit_test_example2.cpp
libs/test/doc/examples/unit_test_example3.html:
*A* broken link: ../../example/unit_test_example3.cpp
libs/test/doc/examples/unit_test_example4.html:
*A* broken link: ../../example/unit_test_example4.cpp
libs/test/doc/examples/unit_test_example5.html:
*A* broken link: ../../example/unit_test_example5.cpp
*A* broken link: ../../example/unit_test_example5.input
libs/test/doc/tests/auto_unit_test_test.html:
*A* broken link: ../../test/auto_unit_test_test.cpp
libs/test/doc/tests/auto_unit_test_test_mult.html:
*A* broken link: ../../test/auto_unit_test_test_mult1.cpp
*A* broken link: ../../test/auto_unit_test_test_mult2.cpp
libs/test/doc/tests/unit_test_suite_ex_test.html:
*A* broken link: ../../test/unit_test_suite_ex_test.cpp
libs/test/doc/tutorials/hello_the_testing_world.html:
*A* broken link: ../../../../../LICENSE_1_0.txt
*A* broken link: ../execution_monitor/index.html
libs/test/doc/tutorials/new_year_resolution.html:
*A* broken link: ../../../../../../LICENSE_1_0.txt
|type_traits|
libs/type_traits/cxx_type_traits.htm:
*A* unlinked file
1
0
Boost Inspection Report
Run Date: 17:08:02 UTC, Monday 06 November 2006
An inspection program <http://www.boost.org/tools/inspect/index.html>
checks each file in the current Boost CVS for various problems,
generating this as output. Problems detected include tabs in files,
missing copyrights, broken URL's, and similar misdemeanors.
Totals:
11673 files scanned
906 directories scanned (including root)
1450 problems reported
Problem counts:
941 files missing Boost license info or having wrong reference text
509 files missing copyright notice
Summary:
any (3)
archive (1)
array (3)
assign (2)
bind (9)
boost-root (4)
build (64)
compatibility (2)
compose (2)
concept_check (24)
conversion (5)
detail (4)
disjoint_sets (6)
doc (2)
filesystem (7)
format (12)
function (1)
functional (8)
inspect (1)
integer (9)
io (2)
iostreams (2)
lambda (14)
libs (8)
logic (2)
math (1)
mem_fn (2)
more (30)
mpl (425)
multi_array (16)
numeric (214)
optional (3)
people (90)
pool (32)
program_options (45)
property_map (17)
ptr_container (113)
python (6)
quickbook (11)
random (22)
range (18)
rational (5)
regex (4)
regression (67)
release (2)
serialization (16)
smart_ptr (15)
test (5)
timer (3)
tokenizer (9)
tools (2)
tr1 (2)
tuple (9)
utility (26)
variant (43)
Details:
*L* missing Boost license info, or wrong reference text
*C* missing copyright notice
|any|
libs/any/doc/
any.xml: *L*
libs/any/
index.html: *C* *L*
|archive|
boost/archive/detail/
utf8_codecvt_facet.hpp: *L*
|array|
libs/array/doc/
array.xml: *L*
libs/array/
index.html: *C* *L*
|assign|
libs/assign/doc/
style.css: *L*
libs/assign/
index.html: *L*
|bind|
libs/bind/
bind.html: *L*
libs/bind/doc/
ref.xml: *L*
libs/bind/
index.html: *C* *L*
mem_fn.html: *L*
ref.html: *C* *L*
libs/bind/test/
Jamfile: *L*
Jamfile.v2: *L*
|boost-root|
/
README: *C*
boost.css: *C* *L*
rst.css: *L*
|build|
tools/build/v1/
gcc-nocygwin-tools.html: *L*
gcc-nocygwin-tools.jam: *L*
stlport.jam: *L*
sunpro-stlport-tools.jam: *L*
tools/build/v1/test/
test-testing.jam: *L*
tools/build/v1/
vacpp-tools.jam: *L*
tools/build/v2/build/
build-request.jam: *L*
modifiers.jam: *L*
tools/build/v2/doc/
Jamfile.v2: *C* *L*
tools/build/v2/doc/src/
advanced.xml: *C* *L*
architecture.xml: *C* *L*
catalog.xml: *C* *L*
extending.xml: *C* *L*
faq.xml: *C* *L*
howto.xml: *C* *L*
install.xml: *C* *L*
recipes.xml: *C* *L*
reference.xml: *C* *L*
standalone.xml: *C* *L*
tutorial.xml: *C* *L*
userman.xml: *C* *L*
tools/build/v2/example/python_modules/
python_helpers.jam: *C* *L*
python_helpers.py: *C* *L*
tools/build/v2/test/
abs_workdir.py: *C* *L*
dependency_property.py: *L*
dependency_test.py: *C* *L*
direct_request_test.py: *C* *L*
dll_path.py: *L*
double_loading.py: *L*
duplicate.py: *L*
echo_args.jam: *C* *L*
empty.jam: *C* *L*
expansion.py: *L*
explicit.py: *L*
gcc_runtime.py: *L*
tools/build/v2/test/project-test3/lib3/
Jamfile: *C* *L*
tools/build/v2/test/
readme.txt: *C* *L*
svn_tree.py: *L*
tag.py: *L*
test_system.html: *L*
tools/build/v2/tools/
sun.jam: *L*
xsltproc.jam: *L*
|compatibility|
libs/compatibility/
generate_cpp_c_headers.py: *L*
index.html: *L*
|compose|
libs/compose/
index.htm: *C* *L*
|concept_check|
libs/concept_check/
bibliography.htm: *L*
concept_check.htm: *L*
concept_covering.htm: *L*
creating_concepts.htm: *L*
libs/concept_check/doc/
Jamfile.v2: *C* *L*
libs/concept_check/doc/reference/
Assignable.xml: *L*
BidirectionalIterator.xml: *L*
CopyConstructible.xml: *L*
DefaultConstructible.xml: *L*
EqualityComparable.xml: *L*
ForwardIterator.xml: *L*
InputIterator.xml: *L*
LessThanComparable.xml: *L*
OutputIterator.xml: *L*
RandomAccessIterator.xml: *L*
SignedInteger.xml: *L*
concepts.xml: *L*
libs/concept_check/
implementation.htm: *L*
index.html: *C* *L*
prog_with_concepts.htm: *L*
reference.htm: *L*
using_concept_check.htm: *L*
|conversion|
libs/conversion/
cast.htm: *L*
index.html: *C* *L*
lexical_cast.htm: *L*
libs/conversion/test/
Jamfile.v2: *L*
|detail|
boost/detail/
algorithm.hpp: *L*
endian.hpp: *L*
limits.hpp: *L*
utf8_codecvt_facet.hpp: *L*
|disjoint_sets|
libs/disjoint_sets/
Jamfile: *C* *L*
bibliography.html: *L*
disjoint_sets.html: *L*
index.html: *C* *L*
|doc|
doc/html/
reference.css: *C* *L*
|filesystem|
libs/filesystem/build/
Jamfile.v2: *C* *L*
libs/filesystem/doc/
tr2_proposal.html: *L*
libs/filesystem/example/
Jamfile.v2: *C* *L*
libs/filesystem/src/
utf8_codecvt_facet.hpp: *L*
libs/filesystem/test/
Jamfile.v2: *L*
|format|
libs/format/
Jamfile: *L*
libs/format/benchmark/
Jamfile: *L*
bench_format.cpp: *C*
results.txt: *C* *L*
libs/format/doc/
choices.html: *L*
format.html: *C*
libs/format/example/
Jamfile: *L*
libs/format/
index.html: *C* *L*
libs/format/test/
Jamfile: *L*
Jamfile.v2: *L*
|function|
boost/function/detail/
gen_maybe_include.pl: *L*
|functional|
boost/
functional.hpp: *L*
libs/functional/
binders.html: *L*
function_test.cpp: *L*
function_traits.html: *L*
index.html: *L*
mem_fun.html: *L*
negators.html: *L*
ptr_fun.html: *L*
|inspect|
tools/inspect/build/
Jamfile.v2: *L*
|integer|
libs/integer/
cstdint.htm: *C* *L*
libs/integer/doc/
integer_mask.html: *L*
static_min_max.html: *L*
libs/integer/
index.html: *C* *L*
integer.htm: *L*
integer_traits.html: *C* *L*
|io|
libs/io/
index.html: *C* *L*
|iostreams|
libs/iostreams/doc/
menu.html: *C*
libs/iostreams/test/detail/
utf8_codecvt_facet.hpp: *L*
|lambda|
libs/lambda/doc/
Jamfile.v2: *C* *L*
libs/lambda/doc/detail/
README: *C* *L*
lambda_doc.xsl: *C* *L*
lambda_doc_chunks.xsl: *C* *L*
libs/lambda/doc/
index.html: *C* *L*
libs/lambda/
index.html: *C* *L*
libs/lambda/test/
Makefile: *C* *L*
|libs|
libs/
expected_results.xml: *C* *L*
index.html: *C* *L*
maintainers.txt: *C* *L*
platform_maintainers.txt: *C* *L*
|logic|
libs/logic/doc/
Jamfile.v2: *C* *L*
|math|
boost/math/
common_factor_rt.hpp: *L*
|mem_fn|
libs/mem_fn/
index.html: *C* *L*
|more|
more/
borland_cpp.html: *C* *L*
count_bdy.htm: *L*
discussion_policy.htm: *C*
error_handling.html: *L*
generic_exception_safety.html: *C* *L*
generic_programming.html: *L*
microsoft_vcpp.html: *C* *L*
moderators.html: *C*
regression.html: *C* *L*
report-apr-2006.html: *C* *L*
report-jan-2006.html: *C* *L*
more/writingdoc/
design.html: *L*
index.html: *L*
introduction.html: *L*
structure.html: *L*
more/writingdoc/template/
acknowledgments.html: *L*
bibliography.html: *L*
configuration.html: *L*
definitions.html: *L*
faq.html: *L*
header.html: *L*
index.html: *L*
overview.html: *L*
rationale.html: *L*
|mpl|
libs/mpl/doc/src/refmanual/
ASSERT.rst: *C* *L*
ASSERT_MSG.rst: *C* *L*
ASSERT_NOT.rst: *C* *L*
ASSERT_RELATION.rst: *C* *L*
AUX_LAMBDA_SUPPORT.rst: *C* *L*
Acknowledgements.rst: *C* *L*
Algorithms-Iteration.rst: *C* *L*
Algorithms-Querying.rst: *C* *L*
Algorithms-Runtime.rst: *C* *L*
Algorithms-Transformation.rst: *C* *L*
Algorithms.rst: *C* *L*
AssociativeSequence.rst: *C* *L*
BackExtensibleSequence.rst: *C* *L*
BidirectionalIterator.rst: *C* *L*
BidirectionalSequence.rst: *C* *L*
CFG_NO_HAS_XXX.rst: *C* *L*
CFG_NO_PREPROCESSED.rst: *C* *L*
Categorized.rst: *C* *L*
Data.rst: *C* *L*
ExtensibleAssociativeSeq.rst: *C* *L*
ExtensibleSequence.rst: *C* *L*
ForwardIterator.rst: *C* *L*
ForwardSequence.rst: *C* *L*
FrontExtensibleSequence.rst: *C* *L*
HAS_XXX_TRAIT_DEF.rst: *C* *L*
HAS_XXX_TRAIT_NAMED_DEF.rst: *C* *L*
Inserter.rst: *C* *L*
IntegralConstant.rst: *C* *L*
IntegralSequenceWrapper.rst: *C* *L*
Iterators-Concepts.rst: *C* *L*
Iterators-Metafunctions.rst: *C* *L*
Iterators.rst: *C* *L*
LIMIT_LIST_SIZE.rst: *C* *L*
LIMIT_MAP_SIZE.rst: *C* *L*
LIMIT_METAFUNCTION_ARITY.rst: *C* *L*
LIMIT_SET_SIZE.rst: *C* *L*
LIMIT_UNROLLING.rst: *C* *L*
LIMIT_VECTOR_SIZE.rst: *C* *L*
LambdaExpression.rst: *C* *L*
Macros-Asserts.rst: *C* *L*
Macros-Configuration.rst: *C* *L*
Macros.rst: *C* *L*
Metafunction.rst: *C* *L*
MetafunctionClass.rst: *C* *L*
Metafunctions-Arithmetic.rst: *C* *L*
Metafunctions-Bitwise.rst: *C* *L*
Metafunctions-Comparisons.rst: *C* *L*
Metafunctions-Composition.rst: *C* *L*
Metafunctions-Conditional.rst: *C* *L*
Metafunctions-Invocation.rst: *C* *L*
Metafunctions-Logical.rst: *C* *L*
Metafunctions-Trivial.rst: *C* *L*
Metafunctions-Type.rst: *C* *L*
Metafunctions.rst: *C* *L*
NumericMetafunction.rst: *C* *L*
PlaceholderExpression.rst: *C* *L*
Placeholders.rst: *C* *L*
RandomAccessIterator.rst: *C* *L*
RandomAccessSequence.rst: *C* *L*
ReversibleAlgorithm.rst: *C* *L*
Sequences-Classes.rst: *C* *L*
Sequences-Concepts.rst: *C* *L*
Sequences-Intrinsic.rst: *C* *L*
Sequences-Views.rst: *C* *L*
Sequences.rst: *C* *L*
TagDispatchedMetafunction.rst: *C* *L*
TrivialMetafunction.rst: *C* *L*
VariadicSequence.rst: *C* *L*
accumulate.rst: *C* *L*
advance.rst: *C* *L*
always.rst: *C* *L*
and_.rst: *C* *L*
apply.rst: *C* *L*
apply_wrap.rst: *C* *L*
arg.rst: *C* *L*
at.rst: *C* *L*
at_c.rst: *C* *L*
back.rst: *C* *L*
back_inserter.rst: *C* *L*
begin.rst: *C* *L*
bind.rst: *C* *L*
bitand_.rst: *C* *L*
bitor_.rst: *C* *L*
bitxor_.rst: *C* *L*
bool_.rst: *C* *L*
clear.rst: *C* *L*
contains.rst: *C* *L*
copy.rst: *C* *L*
copy_if.rst: *C* *L*
count.rst: *C* *L*
count_if.rst: *C* *L*
deque.rst: *C* *L*
deref.rst: *C* *L*
distance.rst: *C* *L*
divides.rst: *C* *L*
empty.rst: *C* *L*
empty_base.rst: *C* *L*
empty_sequence.rst: *C* *L*
end.rst: *C* *L*
equal.rst: *C* *L*
equal_to.rst: *C* *L*
erase.rst: *C* *L*
erase_key.rst: *C* *L*
eval_if.rst: *C* *L*
eval_if_c.rst: *C* *L*
filter_view.rst: *C* *L*
find.rst: *C* *L*
find_if.rst: *C* *L*
fold.rst: *C* *L*
for_each.rst: *C* *L*
front.rst: *C* *L*
front_inserter.rst: *C* *L*
greater.rst: *C* *L*
greater_equal.rst: *C* *L*
has_key.rst: *C* *L*
identity.rst: *C* *L*
if_.rst: *C* *L*
if_c.rst: *C* *L*
inherit.rst: *C* *L*
inherit_linearly.rst: *C* *L*
insert.rst: *C* *L*
insert_range.rst: *C* *L*
inserter_.rst: *C* *L*
int_.rst: *C* *L*
integral_c.rst: *C* *L*
is_sequence.rst: *C* *L*
iter_fold.rst: *C* *L*
iter_fold_if.rst: *C* *L*
iterator_category.rst: *C* *L*
iterator_range.rst: *C* *L*
joint_view.rst: *C* *L*
key_type.rst: *C* *L*
lambda.rst: *C* *L*
less.rst: *C* *L*
less_equal.rst: *C* *L*
list.rst: *C* *L*
list_c.rst: *C* *L*
long_.rst: *C* *L*
lower_bound.rst: *C* *L*
map.rst: *C* *L*
max.rst: *C* *L*
max_element.rst: *C* *L*
min.rst: *C* *L*
min_element.rst: *C* *L*
minus.rst: *C* *L*
modulus.rst: *C* *L*
multiplies.rst: *C* *L*
negate.rst: *C* *L*
next.rst: *C* *L*
not_.rst: *C* *L*
not_equal_to.rst: *C* *L*
numeric_cast.rst: *C* *L*
or_.rst: *C* *L*
order.rst: *C* *L*
pair.rst: *C* *L*
partition.rst: *C* *L*
plus.rst: *C* *L*
pop_back.rst: *C* *L*
pop_front.rst: *C* *L*
preface.rst: *C* *L*
prior.rst: *C* *L*
protect.rst: *C* *L*
push_back.rst: *C* *L*
push_front.rst: *C* *L*
quote.rst: *C* *L*
range_c.rst: *C* *L*
refmanual.py: *C* *L*
remove.rst: *C* *L*
remove_if.rst: *C* *L*
replace.rst: *C* *L*
replace_if.rst: *C* *L*
reverse.rst: *C* *L*
reverse_copy.rst: *C* *L*
reverse_copy_if.rst: *C* *L*
reverse_fold.rst: *C* *L*
reverse_iter_fold.rst: *C* *L*
reverse_partition.rst: *C* *L*
reverse_remove.rst: *C* *L*
reverse_remove_if.rst: *C* *L*
reverse_replace.rst: *C* *L*
reverse_replace_if.rst: *C* *L*
reverse_stable_partition.rst: *C* *L*
reverse_transform.rst: *C* *L*
reverse_unique.rst: *C* *L*
sequence_tag.rst: *C* *L*
set.rst: *C* *L*
set_c.rst: *C* *L*
shift_left.rst: *C* *L*
shift_right.rst: *C* *L*
single_view.rst: *C* *L*
size.rst: *C* *L*
size_t.rst: *C* *L*
sizeof_.rst: *C* *L*
sort.rst: *C* *L*
stable_partition.rst: *C* *L*
terminology.rst: *C* *L*
times.rst: *C* *L*
transform.rst: *C* *L*
transform_view.rst: *C* *L*
unique.rst: *C* *L*
unpack_args.rst: *C* *L*
upper_bound.rst: *C* *L*
value_type.rst: *C* *L*
vector.rst: *C* *L*
vector_c.rst: *C* *L*
void_.rst: *C* *L*
zip_view.rst: *C* *L*
libs/mpl/doc/
style.css: *L*
libs/mpl/example/
Jamfile: *C* *L*
libs/mpl/
index.html: *C* *L*
libs/mpl/test/
Jamfile: *C* *L*
Jamfile.v2: *C* *L*
libs/mpl/test/aux_/
Jamfile: *C* *L*
|multi_array|
libs/multi_array/doc/
iterator_categories.html: *C* *L*
reference.html: *L*
libs/multi_array/doc/xml/
MultiArray.xml: *C* *L*
const_multi_array_ref.xml: *C* *L*
multi_array.xml: *C* *L*
multi_array_ref.xml: *C* *L*
reference.xml: *L*
libs/multi_array/
index.html: *C* *L*
libs/multi_array/test/
Jamfile: *L*
Jamfile.v2: *L*
|numeric|
boost/numeric/ublas/
banded.hpp: *L*
blas.hpp: *L*
boost/numeric/ublas/detail/
concepts.hpp: *L*
config.hpp: *L*
definitions.hpp: *L*
documentation.hpp: *L*
duff.hpp: *L*
iterator.hpp: *L*
matrix_assign.hpp: *L*
raw.hpp: *L*
temporary.hpp: *L*
vector_assign.hpp: *L*
boost/numeric/ublas/
exception.hpp: *L*
expression_types.hpp: *L*
functional.hpp: *L*
fwd.hpp: *L*
hermitian.hpp: *L*
io.hpp: *L*
lu.hpp: *L*
matrix.hpp: *L*
matrix_expression.hpp: *L*
matrix_proxy.hpp: *L*
matrix_sparse.hpp: *L*
operation.hpp: *L*
operation_blocked.hpp: *L*
operation_sparse.hpp: *L*
storage.hpp: *L*
storage_sparse.hpp: *L*
symmetric.hpp: *L*
traits.hpp: *L*
triangular.hpp: *L*
vector.hpp: *L*
vector_expression.hpp: *L*
vector_of_vector.hpp: *L*
vector_proxy.hpp: *L*
vector_sparse.hpp: *L*
libs/numeric/conversion/
index.html: *C* *L*
libs/numeric/conversion/test/
Jamfile: *C* *L*
Jamfile.v2: *C* *L*
test_helpers.cpp: *C*
test_helpers2.cpp: *C*
test_helpers3.cpp: *C*
traits_test.cpp: *C*
udt_example_0.cpp: *C*
udt_support_test.cpp: *C*
libs/numeric/
index.html: *C* *L*
libs/numeric/interval/doc/
checking.htm: *L*
comparisons.htm: *L*
examples.htm: *L*
guide.htm: *L*
includes.htm: *L*
index.html: *C* *L*
interval.htm: *L*
numbers.htm: *L*
policies.htm: *L*
rounding.htm: *L*
todo.htm: *L*
libs/numeric/ublas/bench1/
Jamfile: *L*
bench1.cpp: *L*
bench1.hpp: *L*
bench11.cpp: *L*
bench12.cpp: *L*
bench13.cpp: *L*
libs/numeric/ublas/bench2/
Jamfile: *L*
bench2.cpp: *L*
bench2.hpp: *L*
bench21.cpp: *L*
bench22.cpp: *L*
bench23.cpp: *L*
libs/numeric/ublas/bench3/
Jamfile: *L*
bench3.cpp: *L*
bench3.hpp: *L*
bench31.cpp: *L*
bench32.cpp: *L*
bench33.cpp: *L*
libs/numeric/ublas/bench4/
Jamfile: *L*
bench4.cpp: *L*
bench41.cpp: *L*
bench42.cpp: *L*
bench43.cpp: *L*
libs/numeric/ublas/doc/
Release_notes.txt: *C* *L*
array_adaptor.htm: *C* *L*
banded.htm: *L*
blas.htm: *L*
bounded_array.htm: *C* *L*
container_concept.htm: *L*
doxygen.css: *C* *L*
expression_concept.htm: *L*
hermitian.htm: *L*
index.htm: *L*
iterator_concept.htm: *L*
matrix.htm: *L*
matrix_expression.htm: *L*
matrix_proxy.htm: *L*
matrix_sparse.htm: *L*
operations_overview.htm: *L*
overview.htm: *L*
products.htm: *L*
range.htm: *C* *L*
libs/numeric/ublas/doc/samples/
Jamfile: *L*
banded_adaptor.cpp: *L*
banded_matrix.cpp: *L*
bounded_array.cpp: *L*
compressed_matrix.cpp: *L*
compressed_vector.cpp: *L*
coordinate_matrix.cpp: *L*
coordinate_vector.cpp: *L*
hermitian_adaptor.cpp: *L*
hermitian_matrix.cpp: *L*
identity_matrix.cpp: *L*
map_array.cpp: *L*
mapped_matrix.cpp: *L*
mapped_vector.cpp: *L*
matrix.cpp: *L*
matrix_binary.cpp: *L*
matrix_binary_scalar.cpp: *L*
matrix_column.cpp: *L*
matrix_column_project.cpp: *L*
matrix_matrix_binary.cpp: *L*
matrix_matrix_solve.cpp: *L*
matrix_range.cpp: *L*
matrix_range_project.cpp: *L*
matrix_row.cpp: *L*
matrix_row_project.cpp: *L*
matrix_slice.cpp: *L*
matrix_slice_project.cpp: *L*
matrix_unary.cpp: *L*
matrix_vector_binary.cpp: *L*
matrix_vector_range.cpp: *L*
matrix_vector_slice.cpp: *L*
matrix_vector_solve.cpp: *L*
range.cpp: *L*
slice.cpp: *L*
symmetric_adaptor.cpp: *L*
symmetric_matrix.cpp: *L*
triangular_adaptor.cpp: *L*
triangular_matrix.cpp: *L*
unbounded_array.cpp: *L*
unit_vector.cpp: *L*
vector.cpp: *L*
vector_binary.cpp: *L*
vector_binary_outer.cpp: *L*
vector_binary_redux.cpp: *L*
vector_binary_scalar.cpp: *L*
vector_range.cpp: *L*
vector_range_project.cpp: *L*
vector_slice.cpp: *L*
vector_slice_project.cpp: *L*
vector_unary.cpp: *L*
vector_unary_redux.cpp: *L*
zero_matrix.cpp: *L*
zero_vector.cpp: *L*
libs/numeric/ublas/doc/
storage_concept.htm: *C* *L*
storage_sparse.htm: *L*
symmetric.htm: *L*
triangular.htm: *L*
types_overview.htm: *L*
ublas.css: *C* *L*
unbounded_array.htm: *C* *L*
vector.htm: *L*
vector_expression.htm: *L*
vector_proxy.htm: *L*
vector_sparse.htm: *L*
libs/numeric/ublas/
index.html: *C* *L*
libs/numeric/ublas/test/
Jamfile: *L*
README: *C* *L*
concepts.cpp: *L*
test1.cpp: *L*
test1.hpp: *L*
test11.cpp: *L*
test12.cpp: *L*
test13.cpp: *L*
test2.cpp: *L*
test2.hpp: *L*
test21.cpp: *L*
test22.cpp: *L*
test23.cpp: *L*
test3.cpp: *L*
test3.hpp: *L*
test31.cpp: *L*
test32.cpp: *L*
test33.cpp: *L*
test4.cpp: *L*
test4.hpp: *L*
test42.cpp: *L*
test43.cpp: *L*
test5.cpp: *L*
test5.hpp: *L*
test52.cpp: *L*
test53.cpp: *L*
test6.cpp: *L*
test6.hpp: *L*
test62.cpp: *L*
test63.cpp: *L*
test7.cpp: *L*
test7.hpp: *L*
test71.cpp: *L*
test72.cpp: *L*
test73.cpp: *L*
|optional|
libs/optional/
index.html: *C* *L*
libs/optional/test/
Jamfile.v2: *L*
|people|
people/
aleksey_gurtovoy.htm: *C* *L*
andreas_huber.html: *C* *L*
beman_dawes.html: *C* *L*
darin_adler.htm: *C* *L*
daryle_walker.html: *C* *L*
dietmar_kuehl.htm: *C* *L*
doug_gregor.html: *C* *L*
ed_brey.htm: *C* *L*
eric_friedman.htm: *C* *L*
fernando_cacciola.html: *C* *L*
gary_powell.htm: *C* *L*
gennadiy_rozental.htm: *C* *L*
greg_colvin.htm: *C* *L*
hartmut_kaiser.htm: *C* *L*
herve_bronnimann.htm: *C* *L*
howard_hinnant.htm: *C* *L*
hubert_holin.html: *C* *L*
jaakko_jarvi.htm: *C* *L*
jeff_garland.html: *C* *L*
jens_maurer.htm: *C* *L*
jeremy_siek.htm: *C* *L*
joaquin_lopez.htm: *C* *L*
joel_de_guzman.htm: *C* *L*
john_maddock.htm: *C* *L*
jonathan_turkanis.htm: *C* *L*
kevlin_henney.htm: *C* *L*
liequan_lee.htm: *C* *L*
mac_murrett.htm: *C* *L*
mark_rodgers.htm: *C* *L*
mat_marcus.htm: *C* *L*
paul_mensonides.htm: *C* *L*
paul_moore.htm: *C* *L*
pavol_droba.htm: *C* *L*
people.htm: *C* *L*
peter_dimov.htm: *C* *L*
ralf_w_grosse_kunstleve.htm: *C* *L*
rene_rivera.htm: *C* *L*
robert_ramey.htm: *C* *L*
ronald_garcia.htm: *C* *L*
samuel_krempp.htm: *C* *L*
thomas_witt.html: *C* *L*
thorsten_ottosen.html: *C* *L*
vesa_karvonen.htm: *C* *L*
vladimir_prus.htm: *C* *L*
william_kempf.htm: *C* *L*
|pool|
boost/pool/detail/
pool_construct.bat: *L*
pool_construct.sh: *L*
pool_construct_simple.bat: *L*
pool_construct_simple.sh: *L*
libs/pool/
TODO.txt: *C* *L*
libs/pool/doc/
concepts.html: *L*
copyright.html: *L*
libs/pool/doc/implementation/
alignment.html: *L*
ct_gcd_lcm.html: *L*
for.html: *L*
gcd_lcm.html: *L*
guard.html: *L*
mutex.html: *L*
object_pool.html: *L*
pool.html: *L*
pool_alloc.html: *L*
pool_construct.html: *L*
simple_segregated_storage.html: *L*
singleton.html: *L*
singleton_pool.html: *L*
libs/pool/doc/
index.html: *L*
interfaces.html: *L*
libs/pool/doc/interfaces/
object_pool.html: *L*
pool.html: *L*
pool_alloc.html: *L*
simple_segregated_storage.html: *L*
singleton_pool.html: *L*
user_allocator.html: *L*
libs/pool/doc/
pool.css: *L*
libs/pool/
index.html: *C* *L*
|program_options|
boost/program_options/detail/
utf8_codecvt_facet.hpp: *L*
libs/program_options/build/
Jamfile: *C* *L*
Jamfile.v2: *C* *L*
libs/program_options/doc/
Jamfile.v2: *C* *L*
acknowledgements.xml: *C* *L*
changes.xml: *C* *L*
design.xml: *C* *L*
glossary.xml: *C* *L*
howto.xml: *C* *L*
index.html: *C* *L*
overview.xml: *C* *L*
post_review_plan.txt: *C* *L*
todo.txt: *C* *L*
tutorial.xml: *C* *L*
libs/program_options/example/
Jamfile: *C* *L*
Jamfile.v2: *C* *L*
libs/program_options/
index.html: *C* *L*
libs/program_options/test/
Jamfile: *C* *L*
Jamfile.v2: *C* *L*
program_options_size_test.py: *C* *L*
ucs2.txt: *C* *L*
utf8.txt: *C* *L*
winmain.py: *C* *L*
|property_map|
libs/property_map/
LvaluePropertyMap.html: *L*
ReadWritePropertyMap.html: *L*
ReadablePropertyMap.html: *L*
WritablePropertyMap.html: *L*
associative_property_map.html: *L*
const_assoc_property_map.html: *L*
libs/property_map/doc/
dynamic_property_map.html: *C* *L*
dynamic_property_map.rst: *C* *L*
libs/property_map/
example2.cpp: *L*
identity_property_map.html: *L*
index.html: *C* *L*
iterator_property_map.html: *L*
property_map.html: *L*
vector_property_map.html: *L*
|ptr_container|
libs/ptr_container/doc/
Jamfile.v2: *C* *L*
associative_ptr_container.html: *L*
associative_ptr_container.rst: *L*
comp.sh: *C* *L*
comp_all.sh: *C* *L*
comp_assoc_ptr_container.sh: *C* *L*
comp_conventions.sh: *C* *L*
comp_examples.sh: *C* *L*
comp_faq.sh: *C* *L*
comp_guidelines.sh: *C* *L*
comp_headers.sh: *C* *L*
comp_indirect_fun.sh: *C* *L*
comp_ptr_array.sh: *C* *L*
comp_ptr_container.sh: *C* *L*
comp_ptr_deque.sh: *C* *L*
comp_ptr_list.sh: *C* *L*
comp_ptr_map.sh: *C* *L*
comp_ptr_map_adapter.sh: *C* *L*
comp_ptr_multimap.sh: *C* *L*
comp_ptr_multimap_adapter.sh: *C* *L*
comp_ptr_multiset.sh: *C* *L*
comp_ptr_multiset_adapter.sh: *C* *L*
comp_ptr_sequence_adapter.sh: *C* *L*
comp_ptr_set.sh: *C* *L*
comp_ptr_set_adapter.sh: *C* *L*
comp_ptr_vector.sh: *C* *L*
comp_reference.sh: *C* *L*
comp_rever_ptr_container.sh: *C* *L*
comp_tutorial.sh: *C* *L*
conventions.html: *L*
conventions.rst: *L*
default.css: *L*
examples.rst: *L*
faq.html: *L*
faq.rst: *L*
guidelines.html: *L*
guidelines.rst: *L*
headers.html: *L*
headers.rst: *L*
indirect_fun.html: *L*
indirect_fun.rst: *L*
intro.xml: *C* *L*
ptr_array.html: *L*
ptr_array.rst: *L*
ptr_container.xml: *L*
ptr_deque.html: *L*
ptr_deque.rst: *L*
ptr_list.html: *L*
ptr_list.rst: *L*
ptr_map.html: *L*
ptr_map.rst: *L*
ptr_map_adapter.html: *L*
ptr_map_adapter.rst: *L*
ptr_multimap.html: *L*
ptr_multimap.rst: *L*
ptr_multimap_adapter.html: *L*
ptr_multimap_adapter.rst: *L*
ptr_multiset.html: *L*
ptr_multiset.rst: *L*
ptr_multiset_adapter.html: *L*
ptr_multiset_adapter.rst: *L*
ptr_sequence_adapter.html: *L*
ptr_sequence_adapter.rst: *L*
ptr_set.html: *L*
ptr_set.rst: *L*
ptr_set_adapter.html: *L*
ptr_set_adapter.rst: *L*
ptr_vector.html: *L*
ptr_vector.rst: *L*
reference.html: *L*
reference.rst: *L*
reversible_ptr_container.html: *L*
reversible_ptr_container.rst: *L*
style.css: *C* *L*
todo.txt: *C* *L*
tutorial.html: *L*
tutorial.rst: *L*
libs/ptr_container/
index.html: *C* *L*
libs/ptr_container/test/
Jamfile.v2: *C* *L*
sequence_point.cpp: *C* *L*
|python|
libs/python/doc/
internals.html: *L*
internals.rst: *L*
libs/python/test/
operators_wrapper.cpp: *C* *L*
operators_wrapper.py: *C* *L*
|quickbook|
tools/quickbook/doc/
Jamfile.v2: *C* *L*
tools/quickbook/doc/html/quickbook/
change_log.html: *L*
intro.html: *L*
ref.html: *L*
syntax.html: *L*
tools/quickbook/doc/html/quickbook/syntax/
block.html: *L*
comments.html: *L*
phrase.html: *L*
tools/quickbook/
index.html: *C* *L*
|random|
libs/random/
index.html: *C* *L*
nondet_random.html: *C* *L*
random-concepts.html: *C* *L*
random-distributions.html: *C* *L*
random-generators.html: *C* *L*
random-misc.html: *C* *L*
random-performance.html: *C* *L*
random-variate.html: *C* *L*
libs/random/test/
Jamfile: *C* *L*
Jamfile.v2: *C* *L*
libs/random/
wg21-proposal.html: *C* *L*
|range|
libs/range/doc/
boost_range.html: *L*
example.cpp: *C* *L*
examples.html: *L*
faq.html: *L*
headers.html: *L*
history_ack.html: *L*
intro.html: *L*
portability.html: *L*
range.html: *L*
style.css: *C* *L*
style.html: *L*
utility_class.html: *L*
libs/range/test/
TODO: *C* *L*
compat1.cpp: *C* *L*
|rational|
boost/
rational.hpp: *L*
libs/rational/
index.html: *L*
rational.html: *L*
rational_example.cpp: *L*
rational_test.cpp: *L*
|regex|
libs/regex/build/
gcc-shared.mak: *C* *L*
libs/regex/example/timer/
input_script.txt: *C* *L*
|regression|
tools/regression/build/
Jamfile: *C* *L*
Jamfile.v2: *C* *L*
tools/regression/detail/
tiny_xml_test.txt: *C* *L*
tools/regression/
index.htm: *C* *L*
run_tests.sh: *C* *L*
tools/regression/test/
Jamfile: *L*
test.bat: *C* *L*
tools/regression/xsl_reports/
empty_expected_results.xml: *C* *L*
tools/regression/xsl_reports/runner/
__init__.py: *C* *L*
default.css: *L*
instructions.html: *L*
instructions.rst: *C* *L*
tools/regression/xsl_reports/test/
common.py: *C* *L*
expected_results.xml: *C* *L*
generate_test_results.py: *C* *L*
generate_test_results_v1.py: *C* *L*
restrict_to_library.xsl: *C* *L*
run_notes_regression.py: *C* *L*
run_v1.py: *C* *L*
test.py: *C* *L*
test_boost_wide_report.py: *C* *L*
tools/regression/xsl_reports/
test_results.xsd: *C* *L*
tools/regression/xsl_reports/utils/
__init__.py: *C* *L*
accept_args.py: *C* *L*
char_translation_table.py: *C* *L*
check_existance.py: *C* *L*
checked_system.py: *C* *L*
libxslt.py: *C* *L*
log.py: *C* *L*
makedirs.py: *C* *L*
send_mail.py: *C* *L*
sourceforge.py: *C* *L*
tar.py: *C* *L*
zip.py: *C* *L*
tools/regression/xsl_reports/xsl/v2/
expected_to_1_33_format.xsl: *C* *L*
|release|
tools/release/
utils.py: *C* *L*
|serialization|
libs/serialization/doc/
style.css: *C* *L*
libs/serialization/example/
demo_output.txt: *C* *L*
demo_save.xml: *C* *L*
demofile.txt: *C* *L*
libs/serialization/test/
run_archive_test.bat: *C* *L*
runtest.bat: *C* *L*
runtest.sh: *C* *L*
libs/serialization/vc7ide/
readme.txt: *C* *L*
|smart_ptr|
libs/smart_ptr/
compatibility.htm: *L*
enable_shared_from_this.html: *L*
index.html: *C* *L*
intrusive_ptr.html: *L*
scoped_array.htm: *L*
scoped_ptr.htm: *L*
shared_array.htm: *L*
shared_ptr.htm: *L*
smart_ptr.htm: *L*
smarttests.htm: *L*
sp_techniques.html: *L*
libs/smart_ptr/test/
Jamfile: *L*
Jamfile.v2: *L*
libs/smart_ptr/
weak_ptr.htm: *L*
|test|
boost/test/utils/runtime/cla/detail/
argument_value_usage.hpp: *L*
libs/test/example/
unit_test_example_01.cpp: *C* *L*
libs/test/test/auto-link-test/
run_bjam.bat: *C* *L*
|timer|
libs/timer/
index.html: *C* *L*
timer.htm: *L*
|tokenizer|
libs/tokenizer/
char_delimiters_separator.htm: *L*
char_separator.htm: *L*
escaped_list_separator.htm: *L*
index.html: *L*
introduc.htm: *L*
offset_separator.htm: *L*
token_iterator.htm: *L*
tokenizer.htm: *L*
tokenizerfunction.htm: *L*
|tools|
tools/
index.html: *C* *L*
|tr1|
boost/tr1/
tuple.hpp: *C* *L*
|tuple|
libs/tuple/doc/
design_decisions_rationale.html: *L*
tuple_advanced_interface.html: *L*
tuple_users_guide.html: *L*
libs/tuple/
index.html: *C* *L*
libs/tuple/test/
Jamfile: *C* *L*
README: *C* *L*
|utility|
boost/
shared_container_iterator.hpp: *L*
libs/utility/
Assignable.html: *L*
Collection.html: *L*
CopyConstructible.html: *L*
LessThanComparable.html: *L*
MultiPassInputIterator.html: *L*
OptionalPointee.html: *L*
assert.html: *L*
call_traits.htm: *L*
checked_delete.html: *L*
compressed_pair.htm: *L*
current_function.html: *L*
enable_if.html: *L*
generator_iterator.htm: *C* *L*
index.html: *C* *L*
libs/utility/test/
Jamfile: *L*
Jamfile.v2: *L*
libs/utility/
throw_exception.html: *L*
utility.htm: *L*
value_init.htm: *L*
value_init_test.cpp: *C*
value_init_test_fail1.cpp: *C*
value_init_test_fail2.cpp: *C*
value_init_test_fail3.cpp: *C*
|variant|
libs/variant/doc/
Jamfile.v2: *C* *L*
biblio.xml: *C* *L*
design.xml: *C* *L*
introduction.xml: *C* *L*
misc.xml: *C* *L*
libs/variant/doc/reference/
apply_visitor.xml: *C* *L*
bad_visit.xml: *C* *L*
concepts.xml: *C* *L*
get.xml: *C* *L*
recursive_variant.xml: *C* *L*
recursive_wrapper.xml: *C* *L*
reference.xml: *C* *L*
static_visitor.xml: *C* *L*
variant.xml: *C* *L*
variant_fwd.xml: *C* *L*
visitor_ptr.xml: *C* *L*
libs/variant/doc/tutorial/
advanced.xml: *C* *L*
basic.xml: *C* *L*
tutorial.xml: *C* *L*
libs/variant/doc/
variant.xml: *L*
libs/variant/
index.html: *C* *L*
libs/variant/test/
Jamfile: *L*
Jamfile.v2: *L*
1
0
Boost Regression test failures
Report time: 2006-11-06T11:21:35Z
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…
524 failures in 12 libraries
graph (1)
iostreams (10)
mpl (4)
program_options (7)
python (1)
random (1)
regex (1)
serialization (489)
spirit (1)
statechart (4)
utility (1)
xpressive (4)
|graph|
adj_list_cc: qcc-3.3.5_gpp
|iostreams|
bzip2_test: msvc-7.1 msvc-8.0
example_test: vc-6_5-stlport
file_descriptor_test: cw-9.4
finite_state_filter_test: cw-9.4
gzip_test: msvc-7.1 msvc-8.0
mapped_file_test: cw-9.4
zlib_test: msvc-7.1 msvc-8.0
|mpl|
multiset: gcc-4.0.3_linux gcc-4.1.0_linux gcc-4.1.0_linux_x86_64 gcc-4.1.1_sunos_i86pc
|program_options|
cmdline_test_dll: cw-9.4
options_description_test_dll: cw-9.4
parsers_test_dll: cw-9.4
positional_options_test_dll: cw-9.4
unicode_test_dll: cw-9.4
variable_map_test_dll: cw-9.4
winmain_dll: cw-9.4
|python|
opaque: msvc-8.0
|random|
random_test: intel-linux-9.0
|regex|
concept_check: qcc-3.3.5_cpp
|serialization|
test_array_binary_archive_dll: msvc-7.1 msvc-8.0
test_array_text_archive_dll: msvc-7.1 msvc-8.0
test_array_text_warchive_dll: msvc-7.1 msvc-8.0
test_array_xml_archive_dll: msvc-7.1 msvc-8.0
test_array_xml_warchive_dll: msvc-7.1 msvc-8.0
test_binary_binary_archive_dll: msvc-7.1 msvc-8.0
test_binary_text_archive_dll: msvc-7.1 msvc-8.0
test_binary_text_warchive_dll: msvc-7.1 msvc-8.0
test_binary_xml_archive_dll: msvc-7.1 msvc-8.0
test_binary_xml_warchive_dll: msvc-7.1 msvc-8.0
test_class_info_load_text_warchive: vc-6_5
test_class_info_save_binary_archive: msvc-7.1 msvc-8.0
test_class_info_save_binary_archive_dll: msvc-7.1 msvc-8.0
test_class_info_save_text_archive: msvc-7.1 msvc-8.0
test_class_info_save_text_archive_dll: msvc-7.1 msvc-8.0
test_class_info_save_text_warchive: msvc-7.1 msvc-8.0
test_class_info_save_text_warchive_dll: msvc-7.1 msvc-8.0
test_class_info_save_xml_archive: msvc-7.1 msvc-8.0
test_class_info_save_xml_archive_dll: msvc-7.1 msvc-8.0
test_class_info_save_xml_warchive: msvc-7.1 msvc-8.0
test_class_info_save_xml_warchive_dll: msvc-7.1 msvc-8.0
test_contained_class_binary_archive_dll: msvc-7.1 msvc-8.0
test_contained_class_text_archive_dll: msvc-7.1 msvc-8.0
test_contained_class_text_warchive_dll: msvc-7.1 msvc-8.0
test_contained_class_xml_archive_dll: msvc-7.1 msvc-8.0
test_contained_class_xml_warchive_dll: msvc-7.1 msvc-8.0
test_cyclic_ptrs_binary_archive_dll: msvc-7.1 msvc-8.0
test_cyclic_ptrs_text_archive_dll: msvc-7.1 msvc-8.0
test_cyclic_ptrs_text_warchive_dll: msvc-7.1 msvc-8.0
test_cyclic_ptrs_xml_archive_dll: msvc-7.1 msvc-8.0
test_cyclic_ptrs_xml_warchive_dll: msvc-7.1 msvc-8.0
test_delete_pointer_binary_archive_dll: msvc-7.1 msvc-8.0
test_delete_pointer_text_archive_dll: msvc-7.1 msvc-8.0
test_delete_pointer_text_warchive_dll: msvc-7.1 msvc-8.0
test_delete_pointer_xml_archive_dll: msvc-7.1 msvc-8.0
test_delete_pointer_xml_warchive_dll: msvc-7.1 msvc-8.0
test_deque_binary_archive_dll: msvc-7.1 msvc-8.0
test_deque_text_archive_dll: msvc-7.1 msvc-8.0
test_deque_text_warchive_dll: msvc-7.1 msvc-8.0
test_deque_xml_archive_dll: msvc-7.1 msvc-8.0
test_deque_xml_warchive_dll: msvc-7.1 msvc-8.0
test_derived_binary_archive: msvc-7.1 msvc-8.0
test_derived_binary_archive_dll: msvc-7.1 msvc-8.0
test_derived_class_binary_archive_dll: msvc-7.1 msvc-8.0
test_derived_class_ptr_binary_archive_dll: msvc-7.1 msvc-8.0
test_derived_class_ptr_text_archive_dll: msvc-7.1 msvc-8.0
test_derived_class_ptr_text_warchive_dll: msvc-7.1 msvc-8.0
test_derived_class_ptr_xml_archive_dll: msvc-7.1 msvc-8.0
test_derived_class_ptr_xml_warchive_dll: msvc-7.1 msvc-8.0
test_derived_class_text_archive_dll: msvc-7.1 msvc-8.0
test_derived_class_text_warchive_dll: msvc-7.1 msvc-8.0
test_derived_class_xml_archive_dll: msvc-7.1 msvc-8.0
test_derived_class_xml_warchive_dll: msvc-7.1 msvc-8.0
test_derived_text_archive: msvc-7.1 msvc-8.0
test_derived_text_archive_dll: msvc-7.1 msvc-8.0
test_derived_text_warchive: msvc-7.1 msvc-8.0
test_derived_text_warchive_dll: msvc-7.1 msvc-8.0
test_derived_xml_archive: msvc-7.1 msvc-8.0
test_derived_xml_archive_dll: msvc-7.1 msvc-8.0
test_derived_xml_warchive: msvc-7.1 msvc-8.0
test_derived_xml_warchive_dll: msvc-7.1 msvc-8.0
test_diamond_binary_archive_dll: msvc-7.1 msvc-8.0
test_diamond_text_archive_dll: msvc-7.1 msvc-8.0
test_diamond_text_warchive_dll: msvc-7.1 msvc-8.0
test_diamond_xml_archive_dll: msvc-7.1 msvc-8.0
test_diamond_xml_warchive_dll: msvc-7.1 msvc-8.0
test_exported_binary_archive: msvc-7.1 msvc-8.0
test_exported_binary_archive_dll: msvc-7.1 msvc-8.0
test_exported_text_archive: msvc-7.1 msvc-8.0
test_exported_text_archive_dll: msvc-7.1 msvc-8.0
test_exported_text_warchive: msvc-7.1 msvc-8.0
test_exported_text_warchive_dll: msvc-7.1 msvc-8.0
test_exported_xml_archive: msvc-7.1 msvc-8.0
test_exported_xml_archive_dll: msvc-7.1 msvc-8.0
test_exported_xml_warchive: msvc-7.1 msvc-8.0
test_exported_xml_warchive_dll: msvc-7.1 msvc-8.0
test_list_binary_archive_dll: msvc-7.1 msvc-8.0
test_list_ptrs_binary_archive_dll: msvc-7.1 msvc-8.0
test_list_ptrs_text_archive_dll: msvc-7.1 msvc-8.0
test_list_ptrs_text_warchive_dll: msvc-7.1 msvc-8.0
test_list_ptrs_xml_archive_dll: msvc-7.1 msvc-8.0
test_list_ptrs_xml_warchive_dll: msvc-7.1 msvc-8.0
test_list_text_archive_dll: msvc-7.1 msvc-8.0
test_list_text_warchive_dll: msvc-7.1 msvc-8.0
test_list_xml_archive_dll: msvc-7.1 msvc-8.0
test_list_xml_warchive_dll: msvc-7.1 msvc-8.0
test_map_binary_archive_dll: msvc-7.1 msvc-8.0
test_map_text_archive_dll: msvc-7.1 msvc-8.0
test_map_text_warchive_dll: msvc-7.1 msvc-8.0
test_map_xml_archive_dll: msvc-7.1 msvc-8.0
test_map_xml_warchive_dll: msvc-7.1 msvc-8.0
test_mi_binary_archive_dll: msvc-7.1 msvc-8.0
test_mi_text_archive_dll: msvc-7.1 msvc-8.0
test_mi_text_warchive_dll: msvc-7.1 msvc-8.0
test_mi_xml_archive_dll: msvc-7.1 msvc-8.0
test_mi_xml_warchive_dll: msvc-7.1 msvc-8.0
test_mult_archive_types_dll: msvc-7.1 msvc-8.0
test_multiple_ptrs_binary_archive_dll: msvc-7.1 msvc-8.0
test_multiple_ptrs_text_archive_dll: msvc-7.1 msvc-8.0
test_multiple_ptrs_text_warchive_dll: msvc-7.1 msvc-8.0
test_multiple_ptrs_xml_archive_dll: msvc-7.1 msvc-8.0
test_multiple_ptrs_xml_warchive_dll: msvc-7.1 msvc-8.0
test_no_rtti_binary_archive: msvc-7.1 msvc-8.0
test_no_rtti_binary_archive_dll: msvc-7.1 msvc-8.0
test_no_rtti_text_archive: msvc-7.1 msvc-8.0
test_no_rtti_text_archive_dll: msvc-7.1 msvc-8.0
test_no_rtti_text_warchive: msvc-7.1 msvc-8.0
test_no_rtti_text_warchive_dll: msvc-7.1 msvc-8.0
test_no_rtti_xml_archive: msvc-7.1 msvc-8.0
test_no_rtti_xml_archive_dll: msvc-7.1 msvc-8.0
test_no_rtti_xml_warchive: msvc-7.1 msvc-8.0
test_no_rtti_xml_warchive_dll: msvc-7.1 msvc-8.0
test_non_default_ctor2_binary_archive_dll: msvc-7.1 msvc-8.0
test_non_default_ctor2_text_archive_dll: msvc-7.1 msvc-8.0
test_non_default_ctor2_text_warchive_dll: msvc-7.1 msvc-8.0
test_non_default_ctor2_xml_archive_dll: msvc-7.1 msvc-8.0
test_non_default_ctor2_xml_warchive_dll: msvc-7.1 msvc-8.0
test_non_default_ctor_binary_archive: msvc-7.1 msvc-8.0
test_non_default_ctor_binary_archive_dll: msvc-7.1 msvc-8.0
test_non_default_ctor_text_archive: msvc-7.1 msvc-8.0
test_non_default_ctor_text_archive_dll: msvc-7.1 msvc-8.0
test_non_default_ctor_text_warchive: msvc-7.1 msvc-8.0
test_non_default_ctor_text_warchive_dll: msvc-7.1 msvc-8.0
test_non_default_ctor_xml_archive: msvc-7.1 msvc-8.0
test_non_default_ctor_xml_archive_dll: msvc-7.1 msvc-8.0
test_non_default_ctor_xml_warchive: msvc-7.1 msvc-8.0
test_non_default_ctor_xml_warchive_dll: msvc-7.1 msvc-8.0
test_non_intrusive_binary_archive: msvc-7.1 msvc-8.0
test_non_intrusive_binary_archive_dll: msvc-7.1 msvc-8.0
test_non_intrusive_text_archive: msvc-7.1 msvc-8.0
test_non_intrusive_text_archive_dll: msvc-7.1 msvc-8.0
test_non_intrusive_text_warchive: msvc-7.1 msvc-8.0
test_non_intrusive_text_warchive_dll: msvc-7.1 msvc-8.0
test_non_intrusive_xml_archive: msvc-7.1 msvc-8.0
test_non_intrusive_xml_archive_dll: msvc-7.1 msvc-8.0
test_non_intrusive_xml_warchive: msvc-7.1 msvc-8.0
test_non_intrusive_xml_warchive_dll: msvc-7.1 msvc-8.0
test_null_ptr_binary_archive: msvc-7.1 msvc-8.0
test_null_ptr_binary_archive_dll: msvc-7.1 msvc-8.0
test_null_ptr_text_archive: msvc-7.1 msvc-8.0
test_null_ptr_text_archive_dll: msvc-7.1 msvc-8.0
test_null_ptr_text_warchive: msvc-7.1 msvc-8.0
test_null_ptr_text_warchive_dll: msvc-7.1 msvc-8.0
test_null_ptr_xml_archive: msvc-7.1 msvc-8.0
test_null_ptr_xml_archive_dll: msvc-7.1 msvc-8.0
test_null_ptr_xml_warchive: msvc-7.1 msvc-8.0
test_null_ptr_xml_warchive_dll: msvc-7.1 msvc-8.0
test_nvp_binary_archive_dll: msvc-7.1 msvc-8.0
test_nvp_text_archive_dll: msvc-7.1 msvc-8.0
test_nvp_text_warchive_dll: msvc-7.1 msvc-8.0
test_nvp_xml_archive_dll: msvc-7.1 msvc-8.0
test_nvp_xml_warchive_dll: msvc-7.1 msvc-8.0
test_object_binary_archive_dll: msvc-7.1 msvc-8.0
test_object_text_archive_dll: msvc-7.1 msvc-8.0
test_object_text_warchive_dll: msvc-7.1 msvc-8.0
test_object_xml_archive_dll: msvc-7.1 msvc-8.0
test_object_xml_warchive_dll: msvc-7.1 msvc-8.0
test_optional_binary_archive_dll: msvc-7.1 msvc-8.0
test_optional_text_archive_dll: msvc-7.1 msvc-8.0
test_optional_text_warchive_dll: msvc-7.1 msvc-8.0
test_optional_xml_archive_dll: msvc-7.1 msvc-8.0
test_optional_xml_warchive_dll: msvc-7.1 msvc-8.0
test_polymorphic_binary_archive_dll: msvc-7.1 msvc-8.0
test_polymorphic_text_archive_dll: msvc-7.1 msvc-8.0
test_polymorphic_text_warchive_dll: msvc-7.1 msvc-8.0
test_polymorphic_xml_archive_dll: msvc-7.1 msvc-8.0
test_polymorphic_xml_warchive_dll: msvc-7.1 msvc-8.0
test_primitive_binary_archive_dll: msvc-7.1 msvc-8.0
test_primitive_text_archive_dll: msvc-7.1 msvc-8.0
test_primitive_text_warchive_dll: msvc-7.1 msvc-8.0
test_primitive_xml_archive_dll: msvc-7.1 msvc-8.0
test_primitive_xml_warchive_dll: msvc-7.1 msvc-8.0
test_recursion_binary_archive_dll: msvc-7.1 msvc-8.0
test_recursion_text_archive_dll: msvc-7.1 msvc-8.0
test_recursion_text_warchive_dll: msvc-7.1 msvc-8.0
test_recursion_xml_archive_dll: msvc-7.1 msvc-8.0
test_recursion_xml_warchive_dll: msvc-7.1 msvc-8.0
test_registered_binary_archive: msvc-7.1 msvc-8.0
test_registered_binary_archive_dll: msvc-7.1 msvc-8.0
test_registered_text_archive: msvc-7.1 msvc-8.0
test_registered_text_archive_dll: msvc-7.1 msvc-8.0
test_registered_text_warchive: msvc-7.1 msvc-8.0
test_registered_text_warchive_dll: msvc-7.1 msvc-8.0
test_registered_xml_archive: msvc-7.1 msvc-8.0
test_registered_xml_archive_dll: msvc-7.1 msvc-8.0
test_registered_xml_warchive: msvc-7.1 msvc-8.0
test_registered_xml_warchive_dll: msvc-7.1 msvc-8.0
test_reset_object_address: vc-7_0
test_reset_object_address_dll: vc-7_0
test_set_binary_archive_dll: msvc-7.1 msvc-8.0
test_set_text_archive_dll: msvc-7.1 msvc-8.0
test_set_text_warchive_dll: msvc-7.1 msvc-8.0
test_set_xml_archive_dll: msvc-7.1 msvc-8.0
test_set_xml_warchive_dll: msvc-7.1 msvc-8.0
test_shared_ptr_132_binary_archive_dll: msvc-7.1 msvc-8.0
test_shared_ptr_132_text_archive_dll: msvc-7.1 msvc-8.0
test_shared_ptr_132_text_warchive_dll: msvc-7.1 msvc-8.0
test_shared_ptr_132_xml_archive_dll: msvc-7.1 msvc-8.0
test_shared_ptr_132_xml_warchive_dll: msvc-7.1 msvc-8.0
test_shared_ptr_binary_archive_dll: msvc-7.1 msvc-8.0
test_shared_ptr_text_archive_dll: msvc-7.1 msvc-8.0
test_shared_ptr_text_warchive_dll: msvc-7.1 msvc-8.0
test_shared_ptr_xml_archive_dll: msvc-7.1 msvc-8.0
test_shared_ptr_xml_warchive_dll: msvc-7.1 msvc-8.0
test_simple_class_binary_archive_dll: msvc-7.1 msvc-8.0
test_simple_class_ptr_binary_archive_dll: msvc-7.1 msvc-8.0
test_simple_class_ptr_text_archive_dll: msvc-7.1 msvc-8.0
test_simple_class_ptr_text_warchive_dll: msvc-7.1 msvc-8.0
test_simple_class_ptr_xml_archive_dll: msvc-7.1 msvc-8.0
test_simple_class_ptr_xml_warchive_dll: msvc-7.1 msvc-8.0
test_simple_class_text_archive_dll: msvc-7.1 msvc-8.0
test_simple_class_text_warchive_dll: msvc-7.1 msvc-8.0
test_simple_class_xml_archive_dll: msvc-7.1 msvc-8.0
test_simple_class_xml_warchive_dll: msvc-7.1 msvc-8.0
test_split_binary_archive_dll: msvc-7.1 msvc-8.0
test_split_text_archive_dll: msvc-7.1 msvc-8.0
test_split_text_warchive_dll: msvc-7.1 msvc-8.0
test_split_xml_archive_dll: msvc-7.1 msvc-8.0
test_split_xml_warchive_dll: msvc-7.1 msvc-8.0
test_tracking_binary_archive_dll: msvc-7.1 msvc-8.0
test_tracking_text_archive_dll: msvc-7.1 msvc-8.0
test_tracking_text_warchive_dll: msvc-7.1 msvc-8.0
test_tracking_xml_archive_dll: msvc-7.1 msvc-8.0
test_tracking_xml_warchive_dll: msvc-7.1 msvc-8.0
test_unregistered_binary_archive: msvc-7.1 msvc-8.0
test_unregistered_binary_archive_dll: msvc-7.1 msvc-8.0
test_unregistered_text_archive: msvc-7.1 msvc-8.0
test_unregistered_text_archive_dll: msvc-7.1 msvc-8.0
test_unregistered_text_warchive: msvc-7.1 msvc-8.0
test_unregistered_text_warchive_dll: msvc-7.1 msvc-8.0
test_unregistered_xml_archive: msvc-7.1 msvc-8.0
test_unregistered_xml_archive_dll: msvc-7.1 msvc-8.0
test_unregistered_xml_warchive: msvc-7.1 msvc-8.0
test_unregistered_xml_warchive_dll: msvc-7.1 msvc-8.0
test_variant_binary_archive_dll: msvc-7.1 msvc-8.0
test_variant_text_archive_dll: msvc-7.1 msvc-8.0
test_variant_text_warchive_dll: msvc-7.1 msvc-8.0
test_variant_xml_archive: borland-5_8_2
test_variant_xml_archive_dll: borland-5_8_2 msvc-7.1 msvc-8.0
test_variant_xml_warchive: borland-5_8_2
test_variant_xml_warchive_dll: borland-5_8_2 msvc-7.1 msvc-8.0
test_vector_binary_archive_dll: msvc-7.1 msvc-8.0
test_vector_text_archive_dll: msvc-7.1 msvc-8.0
test_vector_text_warchive_dll: msvc-7.1 msvc-8.0
test_vector_xml_archive_dll: msvc-7.1 msvc-8.0
test_vector_xml_warchive_dll: msvc-7.1 msvc-8.0
|spirit|
scanner_value_type_tests: gcc-4.1.0_linux
|statechart|
TransitionTestBoth: qcc-3.3.5_gpp qcc-3.3.5_gpp
TransitionTestRelaxed: qcc-3.3.5_gpp qcc-3.3.5_gpp
|utility|
operators_test: gcc-3.4.5_linux_x86_64
|xpressive|
misc1: qcc-3.3.5_cpp qcc-3.3.5_cpp qcc-3.3.5_gpp qcc-3.3.5_gpp
1
0