[1.35] Unmerged changes from 1.34.1

I recently started looking at what changes in my libraries may not have made it into the trunk from 1.34.1. The easiest way was to go to my boost-trunk working copy and svn merge https://svn.boost.org/svn/boost/tags/merged_to_1_34_0/boost https://svn.boost.org/svn/boost/tags/Version_1_34_1/boost What I saw in libraries that weren't my own gave me pause for concern. There are a large number of files with a 'C' or an 'M' next to them. Neither is *necessarily* an indication of a problem, but 'M' (meaning "merged") especially is *likely* to indicate unmerged changes, and 'C' (meaning "conflict") may also indicate unmerged changes. I went and inspected a few of those files and the ones I looked at all seemed suspicious to me. I strongly suggest that all other Boost authors do the command above and inspect "merged (M)," "conflict (C)," and "added (A)" files that they may have touched during the 1.34.x release cycle, or we may find that we've dropped important improvements. One place you should especially check is in your test/ directories, to make sure that you haven't unintentionally dropped any tests between then and now. If your testing is complete and you make sure nothing is dropped, in theory, dropped features and bugfixes won't be able to hide. But there are also documentation changes, so I wouldn't take anything for granted ;-) -- Dave Abrahams Boost Consulting http://www.boost-consulting.com

on Mon Oct 29 2007, David Abrahams <dave-AT-boost-consulting.com> wrote:
I recently started looking at what changes in my libraries may not have made it into the trunk from 1.34.1. The easiest way was to go to my boost-trunk working copy and
svn merge https://svn.boost.org/svn/boost/tags/merged_to_1_34_0/boost https://svn.boost.org/svn/boost/tags/Version_1_34_1/boost
What I saw in libraries that weren't my own gave me pause for concern. There are a large number of files with a 'C' or an 'M' next to them. Neither is *necessarily* an indication of a problem, but 'M' (meaning "merged") especially is *likely* to indicate unmerged changes, and 'C' (meaning "conflict") may also indicate unmerged changes. I went and inspected a few of those files and the ones I looked at all seemed suspicious to me.
I strongly suggest that all other Boost authors do the command above and inspect "merged (M)," "conflict (C)," and "added (A)" files that they may have touched during the 1.34.x release cycle, or we may find that we've dropped important improvements. One place you should especially check is in your test/ directories, to make sure that you haven't unintentionally dropped any tests between then and now. If your testing is complete and you make sure nothing is dropped, in theory, dropped features and bugfixes won't be able to hide. But there are also documentation changes, so I wouldn't take anything for granted ;-)
Err, wait: that diff doesn't do what I thought it did. I'm not sure if we have the tags necessary to get this information. Maybe the best we can do is: # Get a copy of the last release svn co https://svn.boost.org/svn/boost/tags/Version_1_34_1/boost boost-1.34.1 cd boost-1.34.1 # Merge in all changes to trunk since last merge into release branch svn merge https://svn.boost.org/svn/boost/tags/merged_to_1_34_0/boost https://svn.boost.org/svn/boost/trunk # Pretend this was a trunk checkout svn switch --relocate https://svn.boost.org/svn/boost/tags/Version_1_34_1/boost https://svn.boost.org/svn/boost/trunk svn diff # inspect the differences between what we've got and the trunk. Can anybody suggest a better procedure? Thanks, -- Dave Abrahams Boost Consulting http://www.boost-consulting.com

on Mon Oct 29 2007, David Abrahams <dave-AT-boost-consulting.com> wrote:
I strongly suggest that all other Boost authors do the command above and inspect "merged (M)," "conflict (C)," and "added (A)" files that they may have touched during the 1.34.x release cycle, or we may find that we've dropped important improvements. One place you should especially check is in your test/ directories, to make sure that you haven't unintentionally dropped any tests between then and now. If your testing is complete and you make sure nothing is dropped, in theory, dropped features and bugfixes won't be able to hide. But there are also documentation changes, so I wouldn't take anything for granted ;-)
Err, wait: that diff doesn't do what I thought it did.
Okay, here's what I did: looked at http://svn.boost.org/trac/boost/log/branches/RC_1_34_0 for the first revision of the RC_1_34_1 branch, which turned out to be 37476. Then I did: svn co https://svn.boost.org/svn/boost/trunk boost-merge cd boost-merge && svn merge -r37476:HEAD https://svn.boost.org/svn/boost/branches/RC_1_34_0/boost . That merged all the changes from the 1.34.0 branch into the trunk. It seemed to actually be quite smart, avoiding most changes that were already done in both the trunk and the branch. The list of files, with their codes, and the last person to modify them on the trunk, is attached here: M ramey boost/archive/basic_text_oprimitive.hpp M ramey boost/archive/basic_xml_archive.hpp M az_sw_dude boost/date_time/date_generators.hpp M pdimov boost/detail/atomic_count_gcc.hpp M pdimov boost/function.hpp C danieljames boost/functional/hash/hash.hpp C dgregor boost/graph/relax.hpp M gmelquio boost/numeric/interval/detail/ppc_rounding_control.hpp M david_abrahams boost/python/module_init.hpp M johnmaddock boost/regex/v4/basic_regex.hpp C johnmaddock boost/tr1/detail/config.hpp C dgregor boost/version.hpp C eric_niebler boost/xpressive/detail/core/state.hpp C eric_niebler boost/xpressive/detail/dynamic/dynamic.hpp C hkaiser index.htm M grafik libs/algorithm/string/doc/Jamfile.v2 M memring libs/algorithm/string/doc/quickref.xml M memring libs/algorithm/string/doc/release_notes.xml M david_abrahams libs/concept_check/stl_concept_covering.cpp C johnmaddock libs/config/config.htm M bemandawes libs/filesystem/src/operations.cpp C aaron_windsor libs/graph/doc/history.html C vladimir_prus libs/iostreams/build/Jamfile.v2 M david_abrahams libs/iterator/doc/BidirectionalTraversal.html M david_abrahams libs/iterator/doc/ForwardTraversal.html M david_abrahams libs/iterator/doc/IncrementableIterator.html M david_abrahams libs/iterator/doc/LvalueIterator.html M david_abrahams libs/iterator/doc/RandomAccessTraversal.html M david_abrahams libs/iterator/doc/ReadableIterator.html M david_abrahams libs/iterator/doc/SinglePassIterator.html M david_abrahams libs/iterator/doc/SwappableIterator.html M david_abrahams libs/iterator/doc/WritableIterator.html M david_abrahams libs/iterator/doc/counting_iterator.html M david_abrahams libs/iterator/doc/facade-and-adaptor.html M david_abrahams libs/iterator/doc/filter_iterator.html M david_abrahams libs/iterator/doc/function_output_iterator.html M david_abrahams libs/iterator/doc/index.html M david_abrahams libs/iterator/doc/indirect_iterator.html M david_abrahams libs/iterator/doc/interoperability-revisited.rst M david_abrahams libs/iterator/doc/iterator_adaptor.html M david_abrahams libs/iterator/doc/iterator_archetypes.html M david_abrahams libs/iterator/doc/iterator_concepts.html M david_abrahams libs/iterator/doc/iterator_facade.html M david_abrahams libs/iterator/doc/iterator_traits.html C david_abrahams libs/iterator/doc/new-iter-concepts.html M david_abrahams libs/iterator/doc/permutation_iterator.html M david_abrahams libs/iterator/doc/pointee.html M david_abrahams libs/iterator/doc/reverse_iterator.html M david_abrahams libs/iterator/doc/rst2html M david_abrahams libs/iterator/doc/transform_iterator.html M david_abrahams libs/iterator/doc/zip_iterator.html C johnmaddock libs/math/doc/math.qbk M david_abrahams libs/mpl/test/Jamfile.v2 M vladimir_prus libs/python/build/Jamfile.v2 C eric_niebler libs/python/build/VisualStudio/boost_python.dsp C david_abrahams libs/python/doc/building.html M david_abrahams libs/python/doc/building.rst M david_abrahams libs/python/doc/index.html C stefan libs/python/doc/tutorial/doc/html/index.html C stefan libs/python/doc/tutorial/doc/html/python/embedding.html C stefan libs/python/doc/tutorial/doc/html/python/exposing.html C stefan libs/python/doc/tutorial/doc/html/python/functions.html C stefan libs/python/doc/tutorial/doc/html/python/hello.html C stefan libs/python/doc/tutorial/doc/html/python/object.html C stefan libs/python/doc/tutorial/doc/html/python/techniques.html A + ? libs/python/example/quickstart A + 38154 witt libs/python/example/quickstart/Jamroot A + 37585 david_abrahams libs/python/example/quickstart/boost-build.jam A + 37585 david_abrahams libs/python/example/quickstart/embedding.cpp A + 37585 david_abrahams libs/python/example/quickstart/extending.cpp A + 37585 david_abrahams libs/python/example/quickstart/script.py A + 37585 david_abrahams libs/python/example/quickstart/test_extending.py D dgregor libs/python/src/aix_init_module.cpp M david_abrahams libs/python/test/select_from_python_test.cpp C vladimir_prus libs/regex/build/Jamfile.v2 M johnmaddock libs/regex/test/regress/test_icu.cpp M ramey libs/serialization/doc/release.html M ramey libs/serialization/src/basic_oarchive.cpp M bemandawes libs/serialization/src/codecvt_null.cpp M ramey libs/serialization/src/extended_type_info.cpp M ramey libs/serialization/src/void_cast.cpp M johnmaddock libs/static_assert/doc/static_assert.qbk C rogeeff libs/test/test/prg_exec_fail2.cpp M johnmaddock libs/tr1/doc/tr1.qbk C johnmaddock libs/type_traits/doc/type_traits.qbk M david_abrahams more/bugs.htm C dgregor more/formal_review_process.htm C garcia more/formal_review_schedule.html M david_abrahams more/getting_started/detail/build-from-source-head.rst M david_abrahams more/getting_started/detail/build-from-source-tail.rst M david_abrahams more/getting_started/detail/common-unix.rst M david_abrahams more/getting_started/detail/common-windows.rst M david_abrahams more/getting_started/detail/conclusion.rst M david_abrahams more/getting_started/detail/release-variables.rst C david_abrahams more/getting_started/unix-variants.html M david_abrahams more/getting_started/unix-variants.rst C david_abrahams more/getting_started/windows.html M david_abrahams more/getting_started/windows.rst M david_abrahams more/mailing_lists.htm M gennaro_prota more/submission_process.htm M danieljames more/version_history.html M david_abrahams rst.css C bemandawes status/explicit-failures-markup.xml Then I did svn diff to see what it changed, and it does seem like some important things are (currently) being dropped. I have also a .zip file containing all that diff output to http://www.boost-consulting.com/writing/merge-1.34-to-trunk.zip (150K) in case you don't want to repeat this process yourself. If you have files in the list above, please at least download and decompress the .zip to see if you need to merge anything to trunk. Thanks, Dave -- Dave Abrahams Boost Consulting http://www.boost-consulting.com

Okay, here's what I did: looked at http://svn.boost.org/trac/boost/log/branches/RC_1_34_0 for the first revision of the RC_1_34_1 branch, which turned out to be 37476.
Then I did:
svn co https://svn.boost.org/svn/boost/trunk boost-merge cd boost-merge && svn merge -r37476:HEAD https://svn.boost.org/svn/boost/branches/RC_1_34_0/boost .
That merged all the changes from the 1.34.0 branch into the trunk. It seemed to actually be quite smart, avoiding most changes that were already done in both the trunk and the branch. The list of files, with their codes, and the last person to modify them on the trunk, is attached here:
I'm confused about this. Shouldn't this have merged the changes from the RC_1_34_1 rather than from RC_1_34_0 ? Robert Ramey

Robert Ramey wrote:
I'm confused about this. Shouldn't this have merged the changes from the RC_1_34_1 rather than from RC_1_34_0 ?
There is no such branch as 'RC_1_34_1'. (Try "svn ls https://svn.boost.org/svn/boost/branches/") Regards, Stefan -- ...ich hab' noch einen Koffer in Berlin...

on Thu Nov 01 2007, Stefan Seefeld <seefeld-AT-sympatico.ca> wrote:
Robert Ramey wrote:
I'm confused about this. Shouldn't this have merged the changes from the RC_1_34_1 rather than from RC_1_34_0 ?
There is no such branch as 'RC_1_34_1'.
(Try "svn ls https://svn.boost.org/svn/boost/branches/")
1.34.1 was developed by making changes to RC_1_34_0 after it was tagged for release as Version_1_34_0. This is our tradition. We know it's dumb, but nobody has ever changed the practice. Release branches should be called, e.g., RC_1_34 HTH, -- Dave Abrahams Boost Consulting http://www.boost-consulting.com

Hmmm - well I am seeing a tag for that version: http://svn.boost.org/trac/boost/browser/tags/Version_1_34_1 so I sort of expected any diffs to be based on that tag. Robert Ramey "Stefan Seefeld" <seefeld@sympatico.ca> wrote in message news:472A1AB3.2020908@sympatico.ca...
Robert Ramey wrote:
I'm confused about this. Shouldn't this have merged the changes from the RC_1_34_1 rather than from RC_1_34_0 ?
There is no such branch as 'RC_1_34_1'.
(Try "svn ls https://svn.boost.org/svn/boost/branches/")
Regards, Stefan
--
...ich hab' noch einen Koffer in Berlin... _______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

on Wed Oct 31 2007, David Abrahams <dave-AT-boost-consulting.com> wrote:
on Mon Oct 29 2007, David Abrahams <dave-AT-boost-consulting.com> wrote:
I strongly suggest that all other Boost authors do the command above and inspect "merged (M)," "conflict (C)," and "added (A)" files that they may have touched during the 1.34.x release cycle, or we may find that we've dropped important improvements. One place you should especially check is in your test/ directories, to make sure that you haven't unintentionally dropped any tests between then and now. If your testing is complete and you make sure nothing is dropped, in theory, dropped features and bugfixes won't be able to hide. But there are also documentation changes, so I wouldn't take anything for granted ;-)
Err, wait: that diff doesn't do what I thought it did.
Okay, here's what I did: looked at http://svn.boost.org/trac/boost/log/branches/RC_1_34_0 for the first revision of the RC_1_34_1 branch, which turned out to be 37476.
Then I did:
svn co https://svn.boost.org/svn/boost/trunk boost-merge cd boost-merge && svn merge -r37476:HEAD https://svn.boost.org/svn/boost/branches/RC_1_34_0/boost .
That merged all the changes from the 1.34.0 branch into the trunk.
Actually I was wrong :( The correct place to look for the base revision of 1.34.0 was: http://svn.boost.org/trac/boost/log/branches/RC_1_34_0?action=stop_on_copy&rev=&stop_rev=&mode=path_history Which reveals the base revision as 33417, not 37476 The whole process will have to be repeated again; I'm sure it will reveal a lot more unmerged changes. I'll try to get to it later tonight. I don't know why svn wants us to jump through these hoops, incidentally, it should be able to find the last common revision of two branches automatically. -- Dave Abrahams Boost Consulting http://www.boost-consulting.com

on Thu Nov 01 2007, David Abrahams <dave-AT-boost-consulting.com> wrote:
That merged all the changes from the 1.34.0 branch into the trunk.
Actually I was wrong :(
The correct place to look for the base revision of 1.34.0 was:
Which reveals the base revision as 33417, not 37476
And the way you find that out without using Trac is: svn log ----stop-on-copy http://svn.boost.org/trac/boost/log/branches/RC_1_34_0/boost
The whole process will have to be repeated again; I'm sure it will reveal a lot more unmerged changes. I'll try to get to it later tonight.
Here is the list. M 40672 40672 dave . A + 37813 witt Jamfile.v2 C 40670 36328 david_abrahams boost-build.jam M 40670 34752 gennaro_prota boost/algorithm/string.hpp C 40670 39519 schoepflin boost/algorithm/string/find_format.hpp M 40670 40518 nesotto boost/algorithm/string/regex.hpp C 40670 35465 ramey boost/archive/basic_text_iarchive.hpp M 40670 35465 ramey boost/archive/basic_text_oarchive.hpp M 40670 32540 ramey boost/archive/basic_text_oprimitive.hpp M 40670 29870 ramey boost/archive/basic_xml_archive.hpp C 40670 39848 bemandawes boost/archive/codecvt_null.hpp M 40670 38233 ramey boost/archive/detail/iserializer.hpp M 40670 38234 ramey boost/archive/detail/oserializer.hpp C 40670 36304 beman_dawes boost/array.hpp C 40670 40467 nesotto boost/assign/ptr_list_of.hpp C 40670 35661 pdimov boost/bind.hpp C 40670 39619 johnmaddock boost/config/compiler/borland.hpp C 40670 40181 johnmaddock boost/config/compiler/hp_acc.hpp C 40670 39158 bgubenko boost/config/platform/hpux.hpp M 40670 28304 az_sw_dude boost/date_time/date_generators.hpp M 40670 33416 az_sw_dude boost/date_time/date_parsing.hpp M 40670 33478 az_sw_dude boost/date_time/period.hpp C 40670 37828 dgregor boost/detail/algorithm.hpp M 40670 27929 pdimov boost/detail/atomic_count_gcc.hpp M 40670 34905 gennaro_prota boost/detail/dynamic_bitset.hpp C 40670 35505 david_abrahams boost/detail/indirect_traits.hpp C 40670 38976 pdimov boost/detail/sp_counted_base_w32.hpp M 40670 35066 akalin boost/dynamic_bitset/dynamic_bitset.hpp M 40670 34499 pdimov boost/function.hpp M 40670 39657 johnmaddock boost/function/function_template.hpp C 40670 40264 danieljames boost/functional/detail/hash_float.hpp C 40670 40036 danieljames boost/functional/hash/hash.hpp M 40670 36838 dgregor boost/graph/adj_list_serialize.hpp M 40670 36269 rgarcia boost/graph/adjacency_matrix.hpp C 40670 36269 rgarcia boost/graph/detail/adjacency_list.hpp M 40670 31949 dgregor boost/graph/filtered_graph.hpp C 40670 39112 aaron_windsor boost/graph/max_cardinality_matching.hpp C 40670 37812 dgregor boost/graph/relax.hpp C 40670 34857 gennaro_prota boost/implicit_cast.hpp M 40670 34127 dgregor boost/io/ios_state.hpp M 40670 34514 johnmaddock boost/math/complex/details.hpp C 40670 36251 agurtovoy boost/mpl/assert.hpp C 40670 33978 t_schwinger boost/mpl/aux_/begin_end_impl.hpp C 40670 39190 bgubenko boost/mpl/aux_/integral_wrapper.hpp C 40670 39922 joaquin boost/multi_index/composite_key.hpp C 40670 39922 joaquin boost/multi_index/detail/bidir_node_iterator.hpp C 40670 39922 joaquin boost/multi_index/detail/hash_index_iterator.hpp C 40670 39922 joaquin boost/multi_index/detail/hash_index_node.hpp C 40670 39922 joaquin boost/multi_index/detail/index_node_base.hpp C 40670 39922 joaquin boost/multi_index/detail/ord_index_node.hpp C 40670 39922 joaquin boost/multi_index/detail/rnd_index_node.hpp C 40670 39922 joaquin boost/multi_index/detail/rnd_node_iterator.hpp C 40670 39922 joaquin boost/multi_index/detail/seq_index_node.hpp C 40670 39922 joaquin boost/multi_index/detail/seq_index_ops.hpp C 40670 40056 joaquin boost/multi_index/hashed_index.hpp C 40670 40056 joaquin boost/multi_index/ordered_index.hpp C 40670 34646 gennaro_prota boost/none.hpp D 40670 28470 vawjr boost/none_t.hpp C 40670 35807 johnmaddock boost/numeric/interval/detail/alpha_rounding_control.hpp C 40670 37913 gmelquio boost/numeric/interval/hw_rounding.hpp C 40670 39369 johnmaddock boost/numeric/ublas/detail/config.hpp C 40670 39513 guwi17 boost/numeric/ublas/storage.hpp M 40670 34411 fcacciola boost/optional/optional.hpp C 40670 39944 nmusatti boost/parameter/name.hpp C 40670 39944 nmusatti boost/parameter/parameters.hpp C 40670 39944 nmusatti boost/parameter/preprocessor.hpp M 40670 33989 vladimir_prus boost/program_options/positional_options.hpp C 40670 38099 hkaiser boost/program_options/variables_map.hpp M 40670 40512 nesotto boost/ptr_container/detail/reversible_ptr_container.hpp C 40670 40517 nesotto boost/ptr_container/ptr_map_adapter.hpp C 40670 40517 nesotto boost/ptr_container/ptr_sequence_adapter.hpp C 40670 40517 nesotto boost/ptr_container/ptr_set_adapter.hpp C 40670 39191 rwgk boost/python/converter/builtin_converters.hpp C 40670 39191 rwgk boost/python/detail/config.hpp M 40670 31828 david_abrahams boost/python/module_init.hpp C 40670 39191 rwgk boost/python/opaque_pointer_converter.hpp C 40670 40376 nesotto boost/range/iterator_range.hpp C 40670 35859 dlwalker boost/rational.hpp C 40670 38864 johnmaddock boost/regex/v4/perl_matcher.hpp C 40670 38864 johnmaddock boost/regex/v4/regex_traits_defaults.hpp M 40670 35376 ramey boost/serialization/collections_load_imp.hpp M 40670 35380 ramey boost/serialization/tracking.hpp C 40670 36329 troyer boost/serialization/vector.hpp M 40670 32558 ramey boost/serialization/void_cast_fwd.hpp C 40670 39282 pdimov boost/shared_ptr.hpp C 40670 37226 hkaiser boost/spirit/tree/common.hpp M 40670 29510 djowel boost/spirit/version.hpp C 40670 40165 rogeeff boost/test/detail/unit_test_parameters.hpp C 40670 36213 jhunold boost/test/floating_point_comparison.hpp M 40670 40471 rogeeff boost/test/impl/exception_safety.ipp M 40670 33337 rogeeff boost/test/included/unit_test_framework.hpp C 40670 36025 jhunold boost/test/output/compiler_log_formatter.hpp M 40670 32461 rogeeff boost/test/parameterized_test.hpp C 40670 40396 rogeeff boost/test/test_tools.hpp C 40670 40472 anthonyw boost/thread/barrier.hpp C 40670 40191 anthonyw boost/thread/condition.hpp C 40670 39784 anthonyw boost/thread/mutex.hpp C 40670 39785 anthonyw boost/thread/once.hpp C 40670 39784 anthonyw boost/thread/recursive_mutex.hpp C 40670 40348 anthonyw boost/thread/thread.hpp C 40670 40654 johnmaddock boost/tr1/detail/config.hpp C 40670 39408 johnmaddock boost/tr1/functional.hpp M 40670 39408 johnmaddock boost/tr1/utility.hpp C 40670 34937 johnmaddock boost/type_traits/config.hpp M 40670 24874 agurtovoy boost/type_traits/function_traits.hpp M 40670 39307 johnmaddock boost/type_traits/is_base_and_derived.hpp C 40670 34182 johnmaddock boost/type_traits/is_class.hpp M 40670 34937 johnmaddock boost/type_traits/is_convertible.hpp C 40670 39589 burbelgruff boost/typeof/encode_decode.hpp C 40670 39589 burbelgruff boost/typeof/int_encoding.hpp C 40670 39589 burbelgruff boost/typeof/modifiers.hpp C 40670 38801 burbelgruff boost/typeof/msvc/typeof_impl.hpp C 40670 39589 burbelgruff boost/typeof/pointers_data_members.hpp C 40670 39589 burbelgruff boost/typeof/register_functions_iterate.hpp C 40670 39704 burbelgruff boost/typeof/template_template_param.hpp C 40670 39707 burbelgruff boost/typeof/typeof_impl.hpp C 40670 40088 niels_dekker boost/utility/value_init.hpp C 40670 34128 dgregor boost/version.hpp C 40670 38254 hkaiser boost/wave/cpp_context.hpp C 40670 36469 hkaiser boost/wave/cpp_throw.hpp C 40670 36942 hkaiser boost/wave/cpplexer/cpp_lex_iterator.hpp C 40670 39651 hkaiser boost/wave/cpplexer/cpp_lex_token.hpp C 40670 39684 hkaiser boost/wave/cpplexer/cpplexer_exceptions.hpp C 40670 39687 hkaiser boost/wave/cpplexer/re2clex/cpp_re2c_lexer.hpp C 40670 38141 hkaiser boost/wave/grammars/cpp_expression_grammar.hpp C 40670 38140 hkaiser boost/wave/grammars/cpp_expression_value.hpp C 40670 37169 hkaiser boost/wave/util/cpp_include_paths.hpp C 40670 38148 hkaiser boost/wave/util/cpp_iterator.hpp C 40670 39651 hkaiser boost/wave/util/cpp_macromap.hpp C 40670 39674 hkaiser boost/wave/util/cpp_macromap_predef.hpp C 40670 36469 hkaiser boost/wave/util/interpret_pragma.hpp C 40670 38181 hkaiser boost/wave/wave_config.hpp C 40670 40342 eric_niebler boost/xpressive/detail/core/state.hpp C 40670 40445 eric_niebler boost/xpressive/detail/dynamic/dynamic.hpp C 40670 40445 eric_niebler boost/xpressive/detail/dynamic/parser_traits.hpp C 40670 39990 eric_niebler boost/xpressive/detail/static/static.hpp C 40670 39990 eric_niebler boost/xpressive/detail/utility/tracking_ptr.hpp C 40670 40445 eric_niebler boost/xpressive/match_results.hpp C 40670 39990 eric_niebler boost/xpressive/traits/detail/c_ctype.hpp C 40670 39921 johnmaddock doc/Jamfile.v2 M 40670 30341 dgregor doc/html/CopyConstructible.html M 40670 30341 dgregor doc/html/any.html M 40670 30341 dgregor doc/html/array.html C 40670 35175 danieljames doc/html/bbv2.html C 40670 35175 danieljames doc/html/bbv2/installation.html C 40670 33497 johnmaddock doc/html/boost_math.html C 40670 35047 johnmaddock doc/html/boost_math/gcd_lcm.html C 40670 33500 johnmaddock doc/html/boost_math/inverse_complex.html C 40670 35292 danieljames doc/html/boost_math/math_special_functions.html C 40670 35292 danieljames doc/html/boost_math/octonions.html C 40670 35292 danieljames doc/html/boost_math/quaternions.html M 40670 30341 dgregor doc/html/boost_staticassert.html M 40670 34973 danieljames doc/html/boost_tr1.html M 40670 30341 dgregor doc/html/boost_typetraits.html M 40670 30341 dgregor doc/html/boost_typetraits/background.html C 40670 39384 grafik doc/html/boostbook.css M 40670 30341 dgregor doc/html/boostbook.html M 40670 30341 dgregor doc/html/date_time.html C 40670 35292 danieljames doc/html/date_time/date_time_io.html C 40670 35292 danieljames doc/html/date_time/details.html C 40670 35292 danieljames doc/html/date_time/local_time.html C 40670 34973 danieljames doc/html/foreach.html M 40670 30341 dgregor doc/html/function.html M 40670 30341 dgregor doc/html/functionN.html C 40670 35175 danieljames doc/html/hash.html C 40670 35175 danieljames doc/html/jam.html C 40670 35175 danieljames doc/html/jam/building.html M 40670 30341 dgregor doc/html/lambda.html M 40670 30341 dgregor doc/html/program_options.html M 40670 30341 dgregor doc/html/ref.html M 40670 30341 dgregor doc/html/signals.html M 40670 30341 dgregor doc/html/string_algo.html A + 35829 dgregor doc/html/thread.html D 40670 35125 hkaiser doc/html/threads.html M 40670 30341 dgregor doc/html/tribool.html C 40670 35175 danieljames doc/html/typeof.html M 40670 30341 dgregor doc/html/variant.html M 40670 30341 dgregor doc/html/who_s_using_boost_.html C 40670 34973 danieljames doc/html/xpressive.html M 40670 40046 fmhess doc/src/boost.xml C 40670 37692 hkaiser index.htm D 40670 38522 vladimir_prus libs/algorithm/minmax/example/Jamfile M 40670 37466 grafik libs/algorithm/string/doc/Jamfile.v2 C 40670 34895 memring libs/algorithm/string/doc/concept.xml C 40670 34895 memring libs/algorithm/string/doc/credits.xml C 40670 34895 memring libs/algorithm/string/doc/design.xml C 40670 34895 memring libs/algorithm/string/doc/environment.xml D 40670 25573 agurtovoy libs/algorithm/string/doc/external_concepts.html C 40670 34895 memring libs/algorithm/string/doc/intro.xml M 40670 34895 memring libs/algorithm/string/doc/quickref.xml C 40670 34895 memring libs/algorithm/string/doc/rationale.xml M 40670 34895 memring libs/algorithm/string/doc/release_notes.xml C 40670 36843 memring libs/algorithm/string/doc/usage.xml D 40670 38521 vladimir_prus libs/algorithm/string/example/Jamfile M 40670 35905 beman_dawes libs/algorithm/string/index.html C 40670 36303 beman_dawes libs/array/array0.cpp M 40670 40414 nesotto libs/assign/doc/index.html M 40670 23236 nesotto libs/assign/doc/style.css C 40670 35905 beman_dawes libs/assign/index.html D 40670 27160 nesotto libs/assign/test/TODO C 40670 35198 david_abrahams libs/concept_check/Jamfile.v2 M 40670 33894 david_abrahams libs/concept_check/stl_concept_covering.cpp C 40670 37915 johnmaddock libs/config/config.htm C 40670 37915 johnmaddock libs/config/index.html M 40670 40184 johnmaddock libs/config/test/Jamfile.v2 C 40670 40293 johnmaddock libs/config/test/config_info.cpp C 40670 34557 johnmaddock libs/config/test/link/borland.mak D 40670 40278 johnmaddock libs/config/test/link/test D 40670 40278 johnmaddock libs/config/test/link/test/Jamfile.v2 C 40670 34557 johnmaddock libs/config/test/link/vc6-stlport.mak C 40670 34557 johnmaddock libs/config/test/link/vc6.mak C 40670 34557 johnmaddock libs/config/test/link/vc7-stlport.mak C 40670 34557 johnmaddock libs/config/test/link/vc7.mak C 40670 34557 johnmaddock libs/config/test/link/vc71-stlport.mak C 40670 34557 johnmaddock libs/config/test/link/vc71.mak C 40670 36763 alnsn libs/conversion/test/Jamfile.v2 D 40670 29537 az_sw_dude libs/date_time/example/Jamfile C 40670 34283 az_sw_dude libs/date_time/test/gregorian/testdate_facet_new.cpp C 40670 37457 grafik libs/date_time/xmldoc/Jamfile.v2 M 40670 30026 az_sw_dude libs/date_time/xmldoc/date_time_docs_howto.html M 40670 29576 az_sw_dude libs/date_time/xmldoc/usage_examples.xml D 40670 38533 vladimir_prus libs/disjoint_sets/Jamfile M 40670 23764 vladimir_prus libs/dynamic_bitset/Jamfile.v2 M 40670 34907 gennaro_prota libs/dynamic_bitset/bitset_test.hpp D 40670 38525 vladimir_prus libs/dynamic_bitset/example/Jamfile C 40670 35905 beman_dawes libs/dynamic_bitset/index.html C 40670 40475 vladimir_prus libs/filesystem/build/Jamfile.v2 M 40670 32677 beman_dawes libs/filesystem/doc/faq.htm M 40670 30972 vladimir_prus libs/filesystem/example/Jamfile.v2 C 40670 40640 bemandawes libs/filesystem/src/operations.cpp C 40670 39561 bemandawes libs/filesystem/test/Jamfile.v2 D 40670 36431 jhunold libs/format/Jamfile D 40670 38524 vladimir_prus libs/format/benchmark/Jamfile D 40670 36431 jhunold libs/format/example/Jamfile M 40670 18244 dgregor libs/function/doc/Jamfile.v2 M 40670 22309 dgregor libs/function/doc/faq.xml M 40670 32282 dgregor libs/function/doc/history.xml M 40670 17866 dgregor libs/function/doc/misc.xml M 40670 32282 dgregor libs/function/doc/reference.xml M 40670 21903 dgregor libs/function/doc/tests.xml M 40670 27732 dgregor libs/function/doc/tutorial.xml M 40670 35905 beman_dawes libs/function/index.html C 40670 36245 andreas_huber69 libs/functional/function_test.cpp C 40670 38876 danieljames libs/functional/hash/doc/changes.qbk C 40670 38876 danieljames libs/functional/hash/doc/disable.qbk C 40670 38876 danieljames libs/functional/hash/doc/intro.qbk C 40670 39985 danieljames libs/functional/hash/doc/links.qbk C 40670 40101 danieljames libs/functional/hash/doc/portability.qbk C 40670 40101 danieljames libs/functional/hash/doc/ref.xml C 40670 38878 danieljames libs/functional/hash/doc/thanks.qbk C 40670 38878 danieljames libs/functional/hash/doc/tutorial.qbk C 40670 38876 danieljames libs/functional/hash/index.html C 40670 39979 danieljames libs/functional/hash/test/hash_float_test.cpp C 40670 40475 vladimir_prus libs/graph/build/Jamfile.v2 D 40670 29735 dgregor libs/graph/build/python D 40670 29735 dgregor libs/graph/build/python/Jamfile M 40670 29996 dgregor libs/graph/doc/AStarHeuristic.html M 40670 29996 dgregor libs/graph/doc/AStarVisitor.html M 40670 25573 agurtovoy libs/graph/doc/AdjacencyGraph.html M 40670 25573 agurtovoy libs/graph/doc/AdjacencyMatrix.html M 40670 28324 dgregor libs/graph/doc/BFSVisitor.html M 40670 25573 agurtovoy libs/graph/doc/BasicMatrix.html M 40670 34135 dgregor libs/graph/doc/BellmanFordVisitor.html M 40670 25573 agurtovoy libs/graph/doc/BidirectionalGraph.html M 40670 25573 agurtovoy libs/graph/doc/Buffer.html M 40670 25573 agurtovoy libs/graph/doc/ColorValue.html M 40670 30540 dgregor libs/graph/doc/DFSVisitor.html M 40670 30540 dgregor libs/graph/doc/DijkstraVisitor.html M 40670 25573 agurtovoy libs/graph/doc/EdgeListGraph.html M 40670 25573 agurtovoy libs/graph/doc/EdgeMutableGraph.html M 40670 25573 agurtovoy libs/graph/doc/EventVisitor.html M 40670 25573 agurtovoy libs/graph/doc/EventVisitorList.html M 40670 34133 dgregor libs/graph/doc/Graph.html M 40670 26024 dgregor libs/graph/doc/IncidenceGraph.html M 40670 25573 agurtovoy libs/graph/doc/IteratorConstructibleGraph.html M 40670 11991 jsiek libs/graph/doc/Makefile M 40670 25573 agurtovoy libs/graph/doc/Monoid.html M 40670 25573 agurtovoy libs/graph/doc/MutableGraph.html M 40670 25573 agurtovoy libs/graph/doc/MutablePropertyGraph.html M 40670 25573 agurtovoy libs/graph/doc/PropertyGraph.html M 40670 25573 agurtovoy libs/graph/doc/PropertyTag.html M 40670 25573 agurtovoy libs/graph/doc/VertexAndEdgeListGraph.html M 40670 25573 agurtovoy libs/graph/doc/VertexListGraph.html M 40670 25573 agurtovoy libs/graph/doc/VertexMutableGraph.html M 40670 25573 agurtovoy libs/graph/doc/acknowledgements.html M 40670 30540 dgregor libs/graph/doc/adjacency_iterator.html M 40670 33767 jsiek libs/graph/doc/adjacency_list.html M 40670 25573 agurtovoy libs/graph/doc/adjacency_list_traits.html M 40670 32706 dgregor libs/graph/doc/adjacency_matrix.html M 40670 29996 dgregor libs/graph/doc/astar_heuristic.html M 40670 38287 dgregor libs/graph/doc/astar_search.html M 40670 29996 dgregor libs/graph/doc/astar_visitor.html M 40670 25573 agurtovoy libs/graph/doc/bandwidth.html M 40670 30998 jsiek libs/graph/doc/bc_clustering.html M 40670 28344 dgregor libs/graph/doc/bellman_ford_shortest.html M 40670 25573 agurtovoy libs/graph/doc/bellman_visitor.html M 40670 30998 jsiek libs/graph/doc/betweenness_centrality.html M 40670 25573 agurtovoy libs/graph/doc/bfs_visitor.html M 40670 25573 agurtovoy libs/graph/doc/bgl_named_params.html M 40670 38956 aaron_windsor libs/graph/doc/bibliography.html M 40670 30998 jsiek libs/graph/doc/breadth_first_search.html M 40670 30540 dgregor libs/graph/doc/breadth_first_visit.html M 40670 32120 dgregor libs/graph/doc/challenge.html M 40670 28344 dgregor libs/graph/doc/circle_layout.html M 40670 33291 dgregor libs/graph/doc/compressed_sparse_row.html M 40670 30998 jsiek libs/graph/doc/connected_components.html M 40670 25573 agurtovoy libs/graph/doc/constructing_algorithms.html M 40670 30998 jsiek libs/graph/doc/copy_graph.html M 40670 30540 dgregor libs/graph/doc/cuthill_mckee_ordering.html M 40670 30998 jsiek libs/graph/doc/dag_shortest_paths.html M 40670 27799 dgregor libs/graph/doc/default.css M 40670 30998 jsiek libs/graph/doc/depth_first_search.html M 40670 30540 dgregor libs/graph/doc/depth_first_visit.html M 40670 25573 agurtovoy libs/graph/doc/dfs_visitor.html M 40670 31949 dgregor libs/graph/doc/dijkstra_shortest_paths.html M 40670 25573 agurtovoy libs/graph/doc/dijkstra_visitor.html M 40670 25573 agurtovoy libs/graph/doc/distance_recorder.html M 40670 25573 agurtovoy libs/graph/doc/edge_list.html M 40670 36125 dgregor libs/graph/doc/edmunds_karp_max_flow.html M 40670 25573 agurtovoy libs/graph/doc/exception.html M 40670 30603 jsiek libs/graph/doc/faq.html M 40670 8402 beman_dawes libs/graph/doc/figs/Makefile M 40670 34810 dgregor libs/graph/doc/file_dependency_example.html M 40670 33815 jsiek libs/graph/doc/filtered_graph.html M 40670 26158 vladimir_prus libs/graph/doc/floyd_warshall_shortest.html M 40670 30998 jsiek libs/graph/doc/fruchterman_reingold.html M 40670 35419 dgregor libs/graph/doc/graph_coloring.html M 40670 25573 agurtovoy libs/graph/doc/graph_concepts.html M 40670 30540 dgregor libs/graph/doc/graph_theory_review.html M 40670 25573 agurtovoy libs/graph/doc/graph_traits.html M 40670 31147 dgregor libs/graph/doc/gursoy_atun_layout.html C 40670 38956 aaron_windsor libs/graph/doc/history.html M 40670 25573 agurtovoy libs/graph/doc/incident.html M 40670 31949 dgregor libs/graph/doc/incremental_components.html M 40670 27783 dgregor libs/graph/doc/index.html M 40670 30540 dgregor libs/graph/doc/inv_adjacency_iterator.html M 40670 37994 aaron_windsor libs/graph/doc/isomorphism.html M 40670 33148 dgregor libs/graph/doc/johnson_all_pairs_shortest.html M 40670 11900 jsiek libs/graph/doc/jwebfrob.pl M 40670 32381 dgregor libs/graph/doc/kamada_kawai_spring_layout.html M 40670 25573 agurtovoy libs/graph/doc/kevin_bacon.html M 40670 28344 dgregor libs/graph/doc/king_ordering.html M 40670 26892 dgregor libs/graph/doc/known_problems.html M 40670 30998 jsiek libs/graph/doc/kruskal_min_spanning_tree.html M 40670 30540 dgregor libs/graph/doc/layout_tolerance.html M 40670 28578 dgregor libs/graph/doc/leda_conversion.html M 40670 31949 dgregor libs/graph/doc/minimum_degree_ordering.html M 40670 25573 agurtovoy libs/graph/doc/null_visitor.html M 40670 25573 agurtovoy libs/graph/doc/opposite.html M 40670 25573 agurtovoy libs/graph/doc/predecessor_recorder.html M 40670 30998 jsiek libs/graph/doc/prim_minimum_spanning_tree.html M 40670 25573 agurtovoy libs/graph/doc/profile.htm M 40670 25573 agurtovoy libs/graph/doc/property.html M 40670 25573 agurtovoy libs/graph/doc/property_map.html M 40670 25573 agurtovoy libs/graph/doc/property_writer.html M 40670 30540 dgregor libs/graph/doc/publications.html M 40670 36125 dgregor libs/graph/doc/push_relabel_max_flow.html M 40670 31949 dgregor libs/graph/doc/python.html M 40670 29560 dgregor libs/graph/doc/quick_tour.html M 40670 25573 agurtovoy libs/graph/doc/random.html M 40670 25893 dgregor libs/graph/doc/random_layout.html M 40670 35638 rgarcia libs/graph/doc/read_graphviz.html M 40670 35638 rgarcia libs/graph/doc/read_graphviz.rst M 40670 25573 agurtovoy libs/graph/doc/reverse_graph.html M 40670 28344 dgregor libs/graph/doc/sequential_vertex_coloring.html M 40670 25573 agurtovoy libs/graph/doc/sloan_ordering.htm M 40670 30540 dgregor libs/graph/doc/sloan_start_end_vertices.htm M 40670 25573 agurtovoy libs/graph/doc/sparse_matrix_ordering.html M 40670 28578 dgregor libs/graph/doc/stanford_graph.html M 40670 30998 jsiek libs/graph/doc/strong_components.html M 40670 30220 dgregor libs/graph/doc/subgraph.html C 40670 38956 aaron_windsor libs/graph/doc/table_of_contents.html M 40670 25573 agurtovoy libs/graph/doc/time_stamper.html M 40670 31949 dgregor libs/graph/doc/topological_sort.html M 40670 30998 jsiek libs/graph/doc/transitive_closure.html M 40670 30998 jsiek libs/graph/doc/transpose_graph.html M 40670 25573 agurtovoy libs/graph/doc/trouble_shooting.html M 40670 30998 jsiek libs/graph/doc/undirected_dfs.html M 40670 26516 dgregor libs/graph/doc/users.html M 40670 31022 jsiek libs/graph/doc/using_adjacency_list.html M 40670 28578 dgregor libs/graph/doc/using_property_maps.html M 40670 25893 dgregor libs/graph/doc/visitor_concepts.html M 40670 31949 dgregor libs/graph/doc/wavefront.htm M 40670 39524 garcia libs/graph/doc/write-graphviz.html D 40670 22230 jsiek libs/graph/example/Jamfile M 40670 27907 dgregor libs/graph/example/cuthill_mckee_ordering.cpp M 40670 10665 jsiek libs/graph/example/data1.txt M 40670 10665 jsiek libs/graph/example/data2.txt M 40670 10665 jsiek libs/graph/example/data3.txt M 40670 32385 dgregor libs/graph/example/file_dependencies.cpp M 40670 27907 dgregor libs/graph/example/king_ordering.cpp M 40670 10033 jsiek libs/graph/example/property_iterator.cpp D 40670 29995 dgregor libs/graph/example/python D 40670 27704 dgregor libs/graph/example/python/biconnected_components.dot D 40670 29995 dgregor libs/graph/example/python/biconnected_components.py D 40670 28350 dgregor libs/graph/example/python/breadth_first_search.py D 40670 27704 dgregor libs/graph/example/python/disconnected.dot D 40670 27704 dgregor libs/graph/example/python/mst.dot D 40670 28306 dgregor libs/graph/example/python/vis.py D 40670 25573 agurtovoy libs/graph/example/regrtest.py M 40670 17323 bjorn_karlsson libs/graph/example/sloan_ordering.cpp M 40670 35905 beman_dawes libs/graph/index.html D 40670 31132 dgregor libs/graph/src/python D 40670 30189 dgregor libs/graph/src/python/basic_graph.cpp D 40670 30189 dgregor libs/graph/src/python/basic_graph.hpp D 40670 27579 dgregor libs/graph/src/python/bellman_ford_events.hpp D 40670 27579 dgregor libs/graph/src/python/bellman_ford_shortest_paths.cpp D 40670 27604 dgregor libs/graph/src/python/betweenness_centrality.cpp D 40670 27552 dgregor libs/graph/src/python/bfs_events.hpp D 40670 31132 dgregor libs/graph/src/python/biconnected_components.cpp D 40670 27579 dgregor libs/graph/src/python/breadth_first_search.cpp D 40670 27890 dgregor libs/graph/src/python/circle_layout.cpp D 40670 27579 dgregor libs/graph/src/python/connected_components.cpp D 40670 28306 dgregor libs/graph/src/python/cuthill_mckee_ordering.cpp D 40670 27579 dgregor libs/graph/src/python/dag_shortest_paths.cpp D 40670 29476 dgregor libs/graph/src/python/depth_first_search.cpp D 40670 27579 dgregor libs/graph/src/python/dfs_events.hpp D 40670 27552 dgregor libs/graph/src/python/digraph.cpp D 40670 27552 dgregor libs/graph/src/python/digraph.hpp D 40670 27552 dgregor libs/graph/src/python/dijkstra_events.hpp D 40670 27579 dgregor libs/graph/src/python/dijkstra_shortest_paths.cpp D 40670 27579 dgregor libs/graph/src/python/dijkstra_visitor.hpp D 40670 27579 dgregor libs/graph/src/python/fruchterman_reingold.cpp D 40670 27678 dgregor libs/graph/src/python/generators.hpp D 40670 27552 dgregor libs/graph/src/python/graph.cpp D 40670 27552 dgregor libs/graph/src/python/graph.hpp D 40670 27890 dgregor libs/graph/src/python/graphviz.cpp D 40670 27579 dgregor libs/graph/src/python/incremental_components.cpp D 40670 28344 dgregor libs/graph/src/python/isomorphism.cpp D 40670 27579 dgregor libs/graph/src/python/kamada_kawai_spring_layout.cpp D 40670 28306 dgregor libs/graph/src/python/king_ordering.cpp D 40670 27579 dgregor libs/graph/src/python/kruskal_min_spanning_tree.cpp D 40670 28306 dgregor libs/graph/src/python/module.cpp D 40670 29931 dgregor libs/graph/src/python/page_rank.cpp D 40670 30180 dgregor libs/graph/src/python/pickle.cpp D 40670 27561 dgregor libs/graph/src/python/point2d.hpp D 40670 27579 dgregor libs/graph/src/python/prim_minimum_spanning_tree.cpp D 40670 27579 dgregor libs/graph/src/python/queue.hpp D 40670 27604 dgregor libs/graph/src/python/sequential_vertex_coloring.cpp D 40670 27579 dgregor libs/graph/src/python/strong_components.cpp D 40670 27579 dgregor libs/graph/src/python/topological_sort.cpp D 40670 28344 dgregor libs/graph/src/python/transitive_closure.cpp D 40670 29931 dgregor libs/graph/src/python/visitor.hpp M 40670 39767 aaron_windsor libs/graph/test/Jamfile.v2 M 40670 34417 dgregor libs/graph/test/bidir_remove_edge.cpp M 40670 28306 dgregor libs/graph/test/cuthill_mckee_ordering.cpp M 40670 29774 dgregor libs/graph/test/dag_longest_paths.cpp M 40670 28306 dgregor libs/graph/test/king_ordering.cpp D 40670 27800 dgregor libs/graph/test/python D 40670 27558 dgregor libs/graph/test/python/biconnected_components.dot D 40670 27557 dgregor libs/graph/test/python/biconnected_components.py D 40670 27581 dgregor libs/graph/test/python/circle_layout.py D 40670 27581 dgregor libs/graph/test/python/fruchterman_reingold.py D 40670 27581 dgregor libs/graph/test/python/kamada_kawai_spring_layout.py D 40670 27800 dgregor libs/graph/test/python/py_dijkstra.py C 40670 36838 dgregor libs/graph/test/serialize.cpp C 40670 35068 david_abrahams libs/iterator/doc/BidirectionalTraversal.html C 40670 35068 david_abrahams libs/iterator/doc/ForwardTraversal.html C 40670 35068 david_abrahams libs/iterator/doc/IncrementableIterator.html C 40670 35068 david_abrahams libs/iterator/doc/LvalueIterator.html C 40670 35068 david_abrahams libs/iterator/doc/RandomAccessTraversal.html C 40670 35068 david_abrahams libs/iterator/doc/ReadableIterator.html C 40670 35068 david_abrahams libs/iterator/doc/SinglePassIterator.html C 40670 35068 david_abrahams libs/iterator/doc/SwappableIterator.html C 40670 35068 david_abrahams libs/iterator/doc/WritableIterator.html C 40670 35068 david_abrahams libs/iterator/doc/counting_iterator.html C 40670 35068 david_abrahams libs/iterator/doc/facade-and-adaptor.html C 40670 35068 david_abrahams libs/iterator/doc/filter_iterator.html C 40670 35068 david_abrahams libs/iterator/doc/function_output_iterator.html C 40670 35068 david_abrahams libs/iterator/doc/index.html C 40670 35068 david_abrahams libs/iterator/doc/indirect_iterator.html M 40670 35239 david_abrahams libs/iterator/doc/interoperability-revisited.rst D 40670 35068 david_abrahams libs/iterator/doc/issues.html C 40670 35068 david_abrahams libs/iterator/doc/iterator_adaptor.html C 40670 35068 david_abrahams libs/iterator/doc/iterator_archetypes.html C 40670 35068 david_abrahams libs/iterator/doc/iterator_concepts.html C 40670 35068 david_abrahams libs/iterator/doc/iterator_facade.html C 40670 35068 david_abrahams libs/iterator/doc/iterator_traits.html C 40670 35068 david_abrahams libs/iterator/doc/new-iter-concepts.html C 40670 33870 david_abrahams libs/iterator/doc/new-iter-concepts.pdf C 40670 35068 david_abrahams libs/iterator/doc/permutation_iterator.html C 40670 35068 david_abrahams libs/iterator/doc/pointee.html D 40670 30962 witt libs/iterator/doc/quickbook D 40670 30962 witt libs/iterator/doc/quickbook/adaptor.qbk D 40670 30962 witt libs/iterator/doc/quickbook/archetypes.qbk D 40670 30962 witt libs/iterator/doc/quickbook/concept_checking.qbk D 40670 30962 witt libs/iterator/doc/quickbook/concepts.qbk D 40670 30962 witt libs/iterator/doc/quickbook/counting_iterator.qbk D 40670 30962 witt libs/iterator/doc/quickbook/facade.qbk D 40670 30962 witt libs/iterator/doc/quickbook/facade_tutorial.qbk D 40670 30962 witt libs/iterator/doc/quickbook/filter_iterator.qbk D 40670 30962 witt libs/iterator/doc/quickbook/function_output_iterator.qbk D 40670 30962 witt libs/iterator/doc/quickbook/indirect_iterator.qbk D 40670 30962 witt libs/iterator/doc/quickbook/iterator.qbk D 40670 30962 witt libs/iterator/doc/quickbook/permutation_iterator.qbk D 40670 30962 witt libs/iterator/doc/quickbook/reverse_iterator.qbk D 40670 30962 witt libs/iterator/doc/quickbook/shared_container_iterator.qbk D 40670 30962 witt libs/iterator/doc/quickbook/specialized_adaptors.qbk D 40670 30962 witt libs/iterator/doc/quickbook/traits.qbk D 40670 30962 witt libs/iterator/doc/quickbook/transform_iterator.qbk D 40670 30962 witt libs/iterator/doc/quickbook/utilities.qbk D 40670 30962 witt libs/iterator/doc/quickbook/zip_iterator.qbk C 40670 35068 david_abrahams libs/iterator/doc/reverse_iterator.html C 40670 35068 david_abrahams libs/iterator/doc/rst2html C 40670 35068 david_abrahams libs/iterator/doc/transform_iterator.html C 40670 35068 david_abrahams libs/iterator/doc/zip_iterator.html D 40670 38519 vladimir_prus libs/iterator/example/Jamfile C 40670 35151 david_abrahams libs/iterator/test/permutation_iterator_test.cpp D 40670 38520 vladimir_prus libs/lambda/test/Jamfile C 40670 40657 bemandawes libs/libraries.htm C 40670 40194 turkanis libs/maintainers.txt R + 35047 johnmaddock libs/math/doc/common_factor.html R + 34558 johnmaddock libs/math/doc/index.html A + 33477 johnmaddock libs/math/doc/math-background.qbk A + 35047 johnmaddock libs/math/doc/math-gcd.qbk A + 33477 johnmaddock libs/math/doc/math-octonion.qbk A + 33477 johnmaddock libs/math/doc/math-quaternion.qbk A + 33477 johnmaddock libs/math/doc/math-sf.qbk A + 33477 johnmaddock libs/math/doc/math-tr1.qbk C 40670 40079 johnmaddock libs/math/doc/math.qbk C 40670 39925 johnmaddock libs/math/index.html C 40670 40522 johnmaddock libs/math/test/Jamfile.v2 M 40670 26328 agurtovoy libs/mpl/doc/index.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/accumulate.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/acknowledgements.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/advance.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/algorithms-concepts.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/algorithms.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/always.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/and.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/apply-wrap.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/apply.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/arg.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/arithmetic-operations.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/assert-msg.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/assert-not.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/assert-relation.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/assert.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/asserts.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/associative-sequence.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/at-c.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/at.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/aux-lambda-support.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/back-extensible-sequence.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/back-inserter.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/back.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/begin.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/bidirectional-iterator.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/bidirectional-sequence.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/bind.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/bitand.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/bitor.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/bitwise-operations.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/bitxor.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/bool.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/broken-compiler.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/categorized-concepts.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/categorized-index.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/cfg-no-has-xxx.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/cfg-no-preprocessed.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/classes.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/clear.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/comparisons.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/components.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/composition-and-argument.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/concepts.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/configuration.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/contains.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/copy-if.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/copy.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/count-if.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/count.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/data-concepts.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/data-miscellaneous.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/data-types.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/deque.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/deref.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/distance.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/divides.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/empty-base.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/empty-sequence.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/empty.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/end.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/equal-to.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/equal.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/erase-key.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/erase.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/eval-if-c.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/eval-if.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/extensible-associative.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/extensible-sequence.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/filter-view.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/find-if.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/find.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/fold.html A + 37316 agurtovoy libs/mpl/doc/refmanual/for-each.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/forward-iterator.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/forward-sequence.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/front-extensible-sequence.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/front-inserter.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/front.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/greater-equal.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/greater.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/has-key.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/has-xxx-trait-def.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/has-xxx-trait-named-def.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/identity.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/if-c.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/if.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/inherit-linearly.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/inherit.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/insert-range.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/insert.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/inserter.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/inserters-inserter.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/inserters.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/int.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/integral-c.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/integral-constant.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/integral-sequence-wrapper.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/intrinsic-metafunctions.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/introspection.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/invocation.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/is-sequence.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/iter-fold.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/iteration-algorithms.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/iterator-category.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/iterator-metafunctions.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/iterator-range.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/iterators-concepts.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/iterators.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/joint-view.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/key-type.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/lambda-expression.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/lambda.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/less-equal.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/less.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/limit-list-size.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/limit-map-size.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/limit-metafunction-arity.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/limit-set-size.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/limit-unrolling.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/limit-vector-size.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/list-c.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/list.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/logical-operations.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/long.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/lower-bound.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/macros.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/map.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/max-element.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/max.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/metafunction-class.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/metafunction.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/metafunctions-concepts.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/metafunctions.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/min-element.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/min.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/minus.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/miscellaneous.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/modulus.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/negate.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/next.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/not-equal-to.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/not.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/numeric-cast.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/numeric-metafunction.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/numeric.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/or.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/order.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/pair.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/partition.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/placeholder-expression.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/placeholders.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/plus.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/pop-back.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/pop-front.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/prior.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/protect.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/push-back.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/push-front.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/querying-algorithms.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/quote.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/random-access-iterator.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/random-access-sequence.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/range-c.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/refmanual_toc.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/remove-if.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/remove.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/replace-if.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/replace.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/reverse-copy-if.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/reverse-copy.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/reverse-fold.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/reverse-iter-fold.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/reverse-partition.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/reverse-remove-if.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/reverse-remove.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/reverse-replace-if.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/reverse-replace.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/reverse-stable-partition.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/reverse-transform.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/reverse-unique.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/reverse.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/reversible-algorithm.html A + 37316 agurtovoy libs/mpl/doc/refmanual/runtime-algorithms.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/sequence-tag.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/sequences.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/set-c.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/set.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/shift-left.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/shift-right.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/single-view.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/size-t.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/size.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/sizeof.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/sort.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/stable-partition.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/tag-dispatched.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/terminology.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/times.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/transform-view.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/transform.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/transformation-algorithms.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/trivial-metafunction.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/trivial-metafunctions.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/trivial.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/type-selection.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/unique.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/unpack-args.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/upper-bound.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/value-type.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/variadic-sequence.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/vector-c.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/vector.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/views.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/void.html M 40670 26328 agurtovoy libs/mpl/doc/refmanual/zip-view.html A + ? libs/mpl/doc/src/refmanual/Attic A + 34978 agurtovoy libs/mpl/doc/src/refmanual/Attic/Algorithms-Runtime.rst A + 37315 agurtovoy libs/mpl/doc/src/refmanual/Attic/for_each.rst M 40670 26341 agurtovoy libs/mpl/doc/src/refmanual/IntegralConstant.rst M 40670 26341 agurtovoy libs/mpl/doc/src/refmanual/refmanual.toc M 40670 26328 agurtovoy libs/mpl/doc/tutorial/acknowledgements.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/apply-lambda-semantics.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/broken-integral-constant.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/changelog-history.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/changes-in-boost-1-32-0.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/dependencies.html M 40670 27513 grafik libs/mpl/doc/tutorial/details.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/dimensional-analysis.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/eti.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/exercises.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/handling-placeholders.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/higher-order.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/implementing-addition-and.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/implementing-division.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/implementing.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/incomplete-support-for.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/iterator-protocol.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/lambda-and-non.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/lambda-details.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/metafunction-composition.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/miscellaneous.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/more-lambda-capabilities.html M 40670 31032 agurtovoy libs/mpl/doc/tutorial/numeric-metafunction.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/partial-metafunction.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/physical-structure.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/placeholder-expression.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/placeholders.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/portability.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/reference-manual.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/renaming-cleanup.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/representing-dimensions.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/representing-quantities.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/resources.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/tag-dispatching-protocol.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/technical-details.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/the-apply-metafunction.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/the-importance-of-being.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/the-lambda-metafunction.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/tutorial-metafunctions.html M 40670 26328 agurtovoy libs/mpl/doc/tutorial/tutorial_toc.html D 40670 38529 vladimir_prus libs/mpl/example/Jamfile M 40670 33026 david_abrahams libs/mpl/test/Jamfile.v2 D 40670 38528 vladimir_prus libs/mpl/test/aux_/Jamfile C 40670 38804 garcia libs/multi_array/doc/reference.html M 40670 37283 rgarcia libs/multi_array/test/storage_order_convert.cpp C 40670 39922 joaquin libs/multi_index/doc/acknowledgements.html C 40670 40541 joaquin libs/multi_index/doc/compiler_specifics.html C 40670 39922 joaquin libs/multi_index/doc/reference/hash_indices.html C 40670 39922 joaquin libs/multi_index/doc/reference/key_extraction.html C 40670 39922 joaquin libs/multi_index/doc/reference/ord_indices.html C 40670 39922 joaquin libs/multi_index/doc/tutorial/basics.html C 40670 39922 joaquin libs/multi_index/doc/tutorial/creation.html C 40670 39922 joaquin libs/multi_index/example/Jamfile.v2 C 40670 39922 joaquin libs/multi_index/test/test_key_extractors.cpp C 40670 39922 joaquin libs/multi_index/test/test_modifiers.cpp M 40670 34411 fcacciola libs/numeric/conversion/doc/conversion_traits.html M 40670 34411 fcacciola libs/numeric/conversion/doc/converter_policies.html C 40670 35905 beman_dawes libs/numeric/conversion/index.html C 40670 37914 gmelquio libs/numeric/interval/doc/interval.htm C 40670 39369 johnmaddock libs/numeric/ublas/test/test1.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test1.hpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test11.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test12.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test13.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test2.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test2.hpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test21.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test22.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test23.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test3.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test3.hpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test31.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test32.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test33.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test4.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test4.hpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test42.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test43.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test5.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test5.hpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test52.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test53.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test6.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test6.hpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test62.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test63.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test7.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test7.hpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test71.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test72.cpp C 40670 39369 johnmaddock libs/numeric/ublas/test/test73.cpp C 40670 35831 david_abrahams libs/optional/doc/optional.html M 40670 32761 vladimir_prus libs/optional/test/Jamfile.v2 M 40670 34411 fcacciola libs/optional/test/optional_test.cpp M 40670 28471 vawjr libs/optional/test/optional_test_ref.cpp D 40670 20985 fcacciola libs/optional/test/optional_test_ref_fail2.cpp C 40670 36569 david_abrahams libs/parameter/doc/html/python.html C 40670 36383 daniel_wallin libs/parameter/doc/python.rst C 40670 39945 nmusatti libs/parameter/test/preprocessor.cpp C 40670 39945 nmusatti libs/parameter/test/sfinae.cpp C 40670 39686 hkaiser libs/program_options/src/options_description.cpp C 40670 40463 vladimir_prus libs/program_options/test/Jamfile.v2 C 40670 40463 vladimir_prus libs/program_options/test/options_description_test.cpp C 40670 40511 nesotto libs/ptr_container/doc/conventions.html C 40670 40511 nesotto libs/ptr_container/doc/examples.html C 40670 40511 nesotto libs/ptr_container/doc/examples.rst C 40670 40511 nesotto libs/ptr_container/doc/faq.html C 40670 40511 nesotto libs/ptr_container/doc/guidelines.html C 40670 40511 nesotto libs/ptr_container/doc/guidelines.rst C 40670 40511 nesotto libs/ptr_container/doc/headers.html C 40670 40511 nesotto libs/ptr_container/doc/headers.rst C 40670 40511 nesotto libs/ptr_container/doc/ptr_container.html C 40670 40511 nesotto libs/ptr_container/doc/ptr_container.rst C 40670 40511 nesotto libs/ptr_container/doc/ptr_sequence_adapter.rst C 40670 40511 nesotto libs/ptr_container/doc/ptr_vector.html C 40670 40511 nesotto libs/ptr_container/doc/ptr_vector.rst C 40670 40511 nesotto libs/ptr_container/doc/reference.html C 40670 40511 nesotto libs/ptr_container/doc/reference.rst C 40670 40511 nesotto libs/ptr_container/doc/reversible_ptr_container.html C 40670 40511 nesotto libs/ptr_container/doc/reversible_ptr_container.rst A + 36153 nesotto libs/ptr_container/doc/style.css C 40670 40511 nesotto libs/ptr_container/doc/tutorial.html C 40670 40511 nesotto libs/ptr_container/doc/tutorial.rst CC 40670 40511 nesotto libs/ptr_container/doc/tutorial_example.html C 40670 40513 nesotto libs/ptr_container/test/ptr_map.cpp C 40670 40510 nesotto libs/ptr_container/test/serialization.cpp C 40670 40475 vladimir_prus libs/python/build/Jamfile.v2 C 40670 31514 eric_niebler libs/python/build/VisualStudio/boost_python.dsp C 40670 37370 david_abrahams libs/python/doc/building.html C 40670 37418 david_abrahams libs/python/doc/building.rst M 40670 35068 david_abrahams libs/python/doc/index.html C 40670 37709 stefan libs/python/doc/tutorial/doc/html/index.html C 40670 37709 stefan libs/python/doc/tutorial/doc/html/python/embedding.html C 40670 37709 stefan libs/python/doc/tutorial/doc/html/python/exposing.html C 40670 37709 stefan libs/python/doc/tutorial/doc/html/python/functions.html C 40670 37709 stefan libs/python/doc/tutorial/doc/html/python/hello.html C 40670 37709 stefan libs/python/doc/tutorial/doc/html/python/object.html C 40670 37708 stefan libs/python/doc/tutorial/doc/html/python/techniques.html C 40670 39191 rwgk libs/python/doc/v2/ResultConverter.html A + ? libs/python/example/quickstart A + 38154 witt libs/python/example/quickstart/Jamroot A + 37585 david_abrahams libs/python/example/quickstart/boost-build.jam A + 37585 david_abrahams libs/python/example/quickstart/embedding.cpp A + 37585 david_abrahams libs/python/example/quickstart/extending.cpp A + 37585 david_abrahams libs/python/example/quickstart/script.py A + 37585 david_abrahams libs/python/example/quickstart/test_extending.py D 40670 24055 dgregor libs/python/src/aix_init_module.cpp C 40670 40216 grafik libs/python/test/Jamfile.v2 M 40670 39191 rwgk libs/python/test/args.cpp C 40670 37346 david_abrahams libs/python/test/callbacks.cpp C 40670 40536 dave libs/python/test/import_.cpp C 40670 37057 david_abrahams libs/python/test/list.cpp C 40670 39191 rwgk libs/python/test/pickle3.cpp M 40670 24380 david_abrahams libs/python/test/select_from_python_test.cpp C 40670 37057 david_abrahams libs/python/test/staticmethod.cpp M 40670 31322 david_abrahams libs/python/test/test_builtin_converters.cpp M 40670 32814 david_abrahams libs/python/test/test_builtin_converters.py C 40670 38576 vladimir_prus libs/random/random-concepts.html C 40670 37510 jmaurer libs/random/random-distributions.html C 40670 40508 nesotto libs/range/doc/boost_range.html M 40670 31968 nesotto libs/range/doc/example.cpp M 40670 30540 dgregor libs/range/doc/examples.html M 40670 30540 dgregor libs/range/doc/faq.html M 40670 40508 nesotto libs/range/doc/headers.html M 40670 33271 nesotto libs/range/doc/history_ack.html C 40670 40508 nesotto libs/range/doc/intro.html M 40670 28787 nesotto libs/range/doc/portability.html M 40670 33271 nesotto libs/range/doc/range.html M 40670 24315 nesotto libs/range/doc/style.css M 40670 30540 dgregor libs/range/doc/style.html M 40670 40508 nesotto libs/range/doc/utility_class.html D 40670 27192 nesotto libs/range/test/TODO D 40670 26766 nesotto libs/range/test/compat1.cpp C 40670 40422 nesotto libs/range/test/extension_mechanism.cpp C 40670 40374 nesotto libs/range/test/sub_range.cpp C 40670 35859 dlwalker libs/rational/rational_test.cpp C 40670 40475 vladimir_prus libs/regex/build/Jamfile.v2 C 40670 40427 johnmaddock libs/regex/build/bcb6.mak C 40670 40405 johnmaddock libs/regex/build/common.sh C 40670 40427 johnmaddock libs/regex/build/gcc-shared.mak C 40670 40427 johnmaddock libs/regex/build/gcc.mak C 40670 40427 johnmaddock libs/regex/build/vc6-stlport.mak C 40670 40427 johnmaddock libs/regex/build/vc6.mak C 40670 40427 johnmaddock libs/regex/build/vc7-stlport.mak C 40670 40427 johnmaddock libs/regex/build/vc7.mak C 40670 40427 johnmaddock libs/regex/build/vc71-stlport.mak C 40670 40427 johnmaddock libs/regex/build/vc71.mak C 40670 40427 johnmaddock libs/regex/build/vc8.mak C 40670 40405 johnmaddock libs/regex/build/vc_gen.sh C 40670 40128 johnmaddock libs/regex/example/Jamfile.v2 M 40670 37944 johnmaddock libs/regex/index.html C 40670 40205 johnmaddock libs/regex/test/Jamfile.v2 D 40670 34563 johnmaddock libs/regex/test/auto-link-test D 40670 34563 johnmaddock libs/regex/test/auto-link-test/Jamfile C 40670 34563 johnmaddock libs/regex/test/profile/Makefile C 40670 39701 anthonyw libs/regex/test/regress/info.hpp M 40670 36592 johnmaddock libs/regex/test/regress/test.hpp M 40670 37738 johnmaddock libs/regex/test/regress/test_icu.cpp M 40670 38237 ramey libs/serialization/doc/archive_reference.html M 40670 35401 ramey libs/serialization/doc/release.html C 40670 38239 ramey libs/serialization/doc/special.html D 40670 29487 grafik libs/serialization/example/Jamfile M 40670 35475 ramey libs/serialization/src/basic_oarchive.cpp M 40670 39848 bemandawes libs/serialization/src/codecvt_null.cpp M 40670 35478 ramey libs/serialization/src/extended_type_info.cpp M 40670 32566 ramey libs/serialization/src/void_cast.cpp C 40670 38244 ramey libs/serialization/test/Jamfile.v2 C 40670 36419 ramey libs/serialization/test/test_map.cpp C 40670 35481 ramey libs/serialization/test/test_non_default_ctor2.cpp C 40670 35996 ramey libs/serialization/test/test_set.cpp C 40670 38252 ramey libs/serialization/vc7ide/BoostSerializationLibrary.sln M 40670 18245 dgregor libs/signals/doc/Jamfile.v2 M 40670 17866 dgregor libs/signals/doc/design.xml M 40670 33139 dgregor libs/signals/doc/faq.xml M 40670 35905 beman_dawes libs/signals/doc/index.html M 40670 17866 dgregor libs/signals/doc/introduction.xml M 40670 23847 dgregor libs/signals/doc/rationale.xml M 40670 27439 dgregor libs/signals/doc/reference/connection.xml M 40670 25047 dgregor libs/signals/doc/reference/last_value.xml M 40670 17866 dgregor libs/signals/doc/reference/reference.xml M 40670 22737 dgregor libs/signals/doc/reference/signal_header.xml M 40670 17866 dgregor libs/signals/doc/reference/slot.xml M 40670 17869 dgregor libs/signals/doc/reference/trackable.xml M 40670 17947 dgregor libs/signals/doc/reference/visit_each.xml M 40670 20836 dgregor libs/signals/doc/tests.xml D 40670 38523 vladimir_prus libs/signals/example/Jamfile M 40670 35905 beman_dawes libs/signals/index.html D 40670 38527 vladimir_prus libs/spirit/example/Jamfile D 40670 26308 hkaiser libs/spirit/phoenix/example/Jamfile D 40670 38526 vladimir_prus libs/spirit/phoenix/test/Jamfile M 40670 32713 biochimia libs/spirit/test/mix_and_match_trees.cpp M 40670 33187 slapi libs/spirit/test/scanner_value_type_tests.cpp C 40670 40524 andreas_huber69 libs/statechart/doc/future_and_history.html C 40670 40615 andreas_huber69 libs/statechart/doc/index.html C 40670 36254 andreas_huber69 libs/statechart/doc/rationale.pdf C 40670 36254 andreas_huber69 libs/statechart/doc/reference.pdf C 40670 36254 andreas_huber69 libs/statechart/doc/tutorial.pdf C 40670 37295 andreas_huber69 libs/statechart/test/TransitionTest.cpp C 40670 34874 johnmaddock libs/static_assert/doc/static_assert.qbk C 40670 40635 rogeeff libs/test/build/Jamfile.v2 D 40670 33387 rogeeff libs/test/example/cla/Jamfile D 40670 33387 rogeeff libs/test/example/cla/validation/Jamfile D 40670 33387 rogeeff libs/test/example/env/Jamfile D 40670 33387 rogeeff libs/test/example/env/validation/Jamfile C 40670 40485 rogeeff libs/test/test/Jamfile.v2 C 40670 40338 rogeeff libs/test/test/prg_exec_fail2.cpp R + 36641 speedsnail libs/thread/build/Jamfile.v2 R + 37948 witt libs/thread/doc/read_write_mutex-ref.xml C 40670 39891 anthonyw libs/thread/test/Jamfile.v2 C 40670 40653 anthonyw libs/thread/test/test_once.cpp C 40670 39408 johnmaddock libs/tr1/doc/tr1.qbk A + 34515 johnmaddock libs/tr1/test/test_shared_ptr_header.cpp D 40670 38530 vladimir_prus libs/tuple/test/Jamfile C 40670 39175 johnmaddock libs/type_traits/cxx_type_traits.htm C 40670 39178 johnmaddock libs/type_traits/doc/type_traits.qbk C 40670 39175 johnmaddock libs/type_traits/index.html M 40670 35989 vladimir_prus libs/utility/test/Jamfile.v2 A + 37421 fcacciola libs/utility/test/none_test.cpp C 40670 39651 hkaiser libs/wave/ChangeLog C 40670 40475 vladimir_prus libs/wave/build/Jamfile.v2 C 40670 36469 hkaiser libs/wave/doc/acknowledgements.html C 40670 38104 hkaiser libs/wave/doc/class_reference_context.html C 40670 38140 hkaiser libs/wave/doc/compiletime_config.html C 40670 36710 hkaiser libs/wave/doc/supported_pragmas.html C 40670 38143 hkaiser libs/wave/samples/advanced_hooks/advanced_hooks.hpp C 40670 39890 hkaiser libs/wave/samples/advanced_hooks/build/Jamfile.v2 C 40670 39890 hkaiser libs/wave/samples/cpp_tokens/build/Jamfile.v2 C 40670 39890 hkaiser libs/wave/samples/lexed_tokens/build/Jamfile.v2 C 40670 39890 hkaiser libs/wave/samples/list_includes/build/Jamfile.v2 C 40670 39890 hkaiser libs/wave/samples/quick_start/build/Jamfile.v2 C 40670 39894 hkaiser libs/wave/samples/waveidl/build/Jamfile.v2 C 40670 39651 hkaiser libs/wave/src/cpplexer/re2clex/cpp.re C 40670 39651 hkaiser libs/wave/src/cpplexer/re2clex/cpp_re.inc C 40670 39651 hkaiser libs/wave/src/cpplexer/re2clex/strict_cpp.re C 40670 39651 hkaiser libs/wave/src/cpplexer/re2clex/strict_cpp_re.inc C 40670 36469 hkaiser libs/wave/src/token_ids.cpp C 40670 39875 schoepflin libs/wave/test/build/Jamfile.v2 C 40670 36469 hkaiser libs/wave/test/testwave/testfiles/t_6_063.cpp C 40670 36469 hkaiser libs/wave/test/testwave/testfiles/t_6_063.hpp C 40670 36469 hkaiser libs/wave/test/testwave/testfiles/t_6_064.cpp C 40670 36469 hkaiser libs/wave/test/testwave/testfiles/t_6_065.cpp C 40670 36469 hkaiser libs/wave/test/testwave/testfiles/t_6_066.cpp C 40670 36469 hkaiser libs/wave/test/testwave/testfiles/t_6_066.hpp C 40670 39684 hkaiser libs/wave/test/testwave/testfiles/t_6_067.cpp C 40670 36469 hkaiser libs/wave/test/testwave/testfiles/t_6_067.hpp C 40670 36469 hkaiser libs/wave/test/testwave/testfiles/t_6_068.cpp C 40670 36469 hkaiser libs/wave/test/testwave/testfiles/t_6_069.cpp C 40670 36469 hkaiser libs/wave/test/testwave/testfiles/t_9_016.cpp C 40670 36469 hkaiser libs/wave/test/testwave/testfiles/t_9_016.hpp C 40670 36469 hkaiser libs/wave/test/testwave/testfiles/t_9_017.cpp C 40670 36469 hkaiser libs/wave/test/testwave/testfiles/t_9_018.cpp A + ? libs/xpressive/test/Attic A + 35855 eric_niebler libs/xpressive/test/Attic/misc2.cpp C 40670 40420 eric_niebler libs/xpressive/test/Jamfile.v2 C 40670 35806 eric_niebler libs/xpressive/test/misc1.cpp C 40670 37442 eric_niebler libs/xpressive/test/misc2.cpp C 40670 36362 david_abrahams more/Jamfile.v2 C 40670 39366 johnmaddock more/blanket-permission.txt M 40670 36325 david_abrahams more/bugs.htm C 40670 38295 dgregor more/formal_review_process.htm C 40670 39927 garcia more/formal_review_schedule.html A + 36336 david_abrahams more/getting_started.rst C 40670 37418 david_abrahams more/getting_started/detail/build-from-source-head.rst C 40670 36493 david_abrahams more/getting_started/detail/build-from-source-tail.rst C 40670 36493 david_abrahams more/getting_started/detail/common-unix.rst C 40670 36493 david_abrahams more/getting_started/detail/common-windows.rst C 40670 36496 david_abrahams more/getting_started/detail/conclusion.rst C 40670 37522 david_abrahams more/getting_started/detail/release-variables.rst C 40670 37523 david_abrahams more/getting_started/unix-variants.html C 40670 37418 david_abrahams more/getting_started/unix-variants.rst C 40670 37523 david_abrahams more/getting_started/windows.html C 40670 36494 david_abrahams more/getting_started/windows.rst C 40670 36992 david_abrahams more/mailing_lists.htm M 40670 36690 johnmaddock more/separate_compilation.html M 40670 34651 gennaro_prota more/submission_process.htm C 40670 38561 johnmaddock more/whos_using/using.qbk C 40670 36490 david_abrahams rst.css C 40670 40633 bgubenko status/explicit-failures-markup.xml C 40670 40281 johnmaddock tools/bcp/bcp.html M 40670 39853 eric_niebler tools/boostbook/doc/boostbook.xml C 40670 40555 fmhess tools/boostbook/doc/reference.xml C 40670 40049 fmhess tools/boostbook/setup_boostbook.py C 40670 40049 fmhess tools/boostbook/setup_boostbook.sh C 40670 40555 fmhess tools/boostbook/xsl/chunk-common.xsl C 40670 40554 fmhess tools/boostbook/xsl/docbook.xsl C 40670 40555 fmhess tools/boostbook/xsl/function.xsl C 40670 37992 danieljames tools/boostbook/xsl/html.xsl C 40670 40555 fmhess tools/boostbook/xsl/lookup.xsl C 40670 40555 fmhess tools/boostbook/xsl/reference.xsl C 40670 40555 fmhess tools/boostbook/xsl/type.xsl C 40670 40555 fmhess tools/boostbook/xsl/utility.xsl C 40670 39104 vladimir_prus tools/build/v2/build-system.jam C 40670 40459 speedsnail tools/build/v2/build/targets.jam C 40670 39164 vladimir_prus tools/build/v2/build/toolset.jam C 40670 39601 vladimir_prus tools/build/v2/build/version.jam C 40670 39805 vladimir_prus tools/build/v2/changes.txt C 40670 40174 vladimir_prus tools/build/v2/doc/src/reference.xml C 40670 40160 vladimir_prus tools/build/v2/doc/src/standalone.xml C 40670 40174 vladimir_prus tools/build/v2/doc/src/tasks.xml C 40670 37666 vladimir_prus tools/build/v2/example/generator/soap.jam C 40670 39903 vladimir_prus tools/build/v2/index.html C 40670 38968 vladimir_prus tools/build/v2/nightly.sh C 40670 39631 vladimir_prus tools/build/v2/release_procedure.txt C 40670 39902 vladimir_prus tools/build/v2/roll.sh C 40670 39831 vladimir_prus tools/build/v2/test/BoostBuild.py C 40670 39605 vladimir_prus tools/build/v2/test/boostbook.py C 40670 39606 vladimir_prus tools/build/v2/test/example_qt4.py C 40670 39818 vladimir_prus tools/build/v2/test/library_chain.py C 40670 39103 vladimir_prus tools/build/v2/test/project_glob.py M 40670 35399 jhunold tools/build/v2/test/railsys/program/Jamfile C 40670 38965 grafik tools/build/v2/test/regression.py C 40670 39165 vladimir_prus tools/build/v2/test/remove_requirement.py M 40670 39831 vladimir_prus tools/build/v2/test/searched_lib.py C 40670 39630 vladimir_prus tools/build/v2/test/test-config-example.jam C 40670 39197 vladimir_prus tools/build/v2/test/test_all.py C 40670 39409 bgubenko tools/build/v2/tools/acc.jam C 40670 40462 vladimir_prus tools/build/v2/tools/boostbook.jam C 40670 40008 vladimir_prus tools/build/v2/tools/common.jam C 40670 37347 david_abrahams tools/build/v2/tools/doxproc.py C 40670 37457 grafik tools/build/v2/tools/doxygen.jam C 40670 39642 vladimir_prus tools/build/v2/tools/gcc.jam C 40670 38015 grafik tools/build/v2/tools/intel-win.jam C 40670 36980 dgregor tools/build/v2/tools/mpi.jam C 40670 39899 vladimir_prus tools/build/v2/tools/msvc.jam C 40670 40468 dave tools/build/v2/tools/python.jam M 40670 33212 vladimir_prus tools/build/v2/tools/qcc.jam C 40670 36864 jhunold tools/build/v2/tools/qt4.jam C 40670 39646 vladimir_prus tools/build/v2/tools/stlport.jam C 40670 40410 vladimir_prus tools/build/v2/user-config.jam C 40670 39103 vladimir_prus tools/build/v2/util/path.jam M 40670 25572 agurtovoy tools/inspect/index.html C 40670 40061 johnmaddock tools/inspect/inspect.cpp C 40670 35511 danieljames tools/inspect/link_check.cpp C 40670 35511 danieljames tools/inspect/link_check.hpp C 40670 39620 grafik tools/jam/doc/bjam.qbk C 40670 39620 grafik tools/jam/src/boost-jam.spec C 40670 40095 grafik tools/jam/src/build.bat C 40670 40095 grafik tools/jam/src/build.jam C 40670 40497 vladimir_prus tools/jam/src/builtins.c C 40670 39416 grafik tools/jam/src/execnt.c C 40670 39620 grafik tools/jam/src/patchlevel.h M 40670 37025 djowel tools/quickbook/doc/Jamfile.v2 C 40670 40469 grafik tools/quickbook/doc/html/index.html C 40670 40469 grafik tools/quickbook/doc/html/quickbook/change_log.html C 40670 40469 grafik tools/quickbook/doc/html/quickbook/intro.html C 40670 40469 grafik tools/quickbook/doc/html/quickbook/ref.html C 40670 40469 grafik tools/quickbook/doc/html/quickbook/syntax.html C 40670 40469 grafik tools/quickbook/doc/html/quickbook/syntax/block.html C 40670 40469 grafik tools/quickbook/doc/html/quickbook/syntax/comments.html C 40670 40469 grafik tools/quickbook/doc/html/quickbook/syntax/phrase.html C 40670 40469 grafik tools/quickbook/doc/quickbook.qbk M 40670 26857 eric_niebler tools/quickbook/index.html C 40670 39291 djowel tools/quickbook/test/quickbook-manual.gold C 40670 38547 djowel tools/quickbook/test/quickbook-manual.quickbook C 40670 38800 ramey tools/regression/build/vcide/process_jam_log.vcproj C 40670 38800 ramey tools/regression/index.htm A + ? tools/regression/test/test-cases/borland A + 36817 mbergal tools/regression/test/test-cases/borland/bjam.log A + ? tools/regression/test/test-cases/libs A + 36847 mbergal tools/regression/test/test-cases/libs/bjam.log A + ? tools/regression/xsl_reports/db A + 36854 mbergal tools/regression/xsl_reports/db/load.py A + 36854 mbergal tools/regression/xsl_reports/db/sqlserver_schemas.sql A + 36854 mbergal tools/regression/xsl_reports/db/test-runs.xsd C 40670 39447 bemandawes tools/regression/xsl_reports/runner/collect_and_upload_logs.py C 40670 38468 agurtovoy tools/regression/xsl_reports/runner/instructions.html C 40670 38468 agurtovoy tools/regression/xsl_reports/runner/instructions.rst C 40670 40011 bemandawes tools/regression/xsl_reports/runner/regression.py A + ? tools/regression/xsl_reports/test/test-components A + 36826 mbergal tools/regression/xsl_reports/test/test-components/test.py A + ? tools/regression/xsl_reports/test/test-components/test_is_test_log_complete A + 36826 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/compile-fail.xml A + 36825 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/completed.xml A + ? tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/expected A + 36848 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/expected/compile-fail.xml A + 36825 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/expected/completed.xml A + 36853 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/expected/lib.xml A + 36826 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/expected/misfire.xml A + 36825 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/expected/no-run.xml A + 36853 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/expected/run_pyd.xml A + 36826 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/expected/test-case.xml A + 36853 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/lib.xml A + 36826 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/misfire.xml A + 36825 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/no-run.xml A + 36853 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/run_pyd.xml A + 36824 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/test-case.xml A + 36824 mbergal tools/regression/xsl_reports/test/test-components/test_is_test_log_complete/test-driver.xsl A + ? tools/regression/xsl_reports/test/test-components/test_re_match A + ? tools/regression/xsl_reports/test/test-components/test_re_match/expected A + 37000 mbergal tools/regression/xsl_reports/test/test-components/test_re_match/expected/test_re_match.xml A + 37000 mbergal tools/regression/xsl_reports/test/test-components/test_re_match/test-driver.xsl A + 37000 mbergal tools/regression/xsl_reports/test/test-components/test_re_match/test_re_match.xml A + ? tools/regression/xsl_reports/test/test-components/test_test_case_status A + 36999 mbergal tools/regression/xsl_reports/test/test-components/test_test_case_status/a.xml A + ? tools/regression/xsl_reports/test/test-components/test_test_case_status/expected A + 36999 mbergal tools/regression/xsl_reports/test/test-components/test_test_case_status/expected/a.xml A + 36999 mbergal tools/regression/xsl_reports/test/test-components/test_test_case_status/explicit-failures-markup.xml.test A + 36999 mbergal tools/regression/xsl_reports/test/test-components/test_test_case_status/test-driver.xsl A + ? tools/regression/xsl_reports/test/test-components/test_test_structure A + 36998 mbergal tools/regression/xsl_reports/test/test-components/test_test_structure/a.xml A + ? tools/regression/xsl_reports/test/test-components/test_test_structure/expected A + 36998 mbergal tools/regression/xsl_reports/test/test-components/test_test_structure/expected/a.xml A + 36998 mbergal tools/regression/xsl_reports/test/test-components/test_test_structure/explicit-failures-markup.xml.test A + 36998 mbergal tools/regression/xsl_reports/test/test-components/test_test_structure/test-driver.xsl C 40670 40631 agurtovoy tools/regression/xsl_reports/xsl/v2/links_page.xsl M 40670 39890 hkaiser tools/wave/build/Jamfile.v2 C 40670 38254 hkaiser tools/wave/cpp.cpp C 40670 36698 hkaiser tools/wave/cpp_version.hpp -- Dave Abrahams Boost Consulting http://www.boost-consulting.com

David Abrahams:
Here is the list.
...
C 40670 38976 pdimov boost/detail/sp_counted_base_w32.hpp
I think that you have false positives in the list because of the "stop on copy"; it should be "follow copies" since for example: http://svn.boost.org/trac/boost/log/trunk/boost/detail/sp_counted_base_w32.hpp?action=stop_on_copy&rev=38976&stop_rev=&mode=follow_copy properly shows revision 33747, while http://svn.boost.org/trac/boost/log/trunk/boost/detail/sp_counted_base_w32.h... does not. http://svn.boost.org/trac/boost/log/branches/RC_1_34_0/boost/boost/detail/sp... shows that the branch is at 33747.

on Thu Nov 01 2007, "Peter Dimov" <pdimov-AT-pdimov.com> wrote:
David Abrahams:
Here is the list.
...
C 40670 38976 pdimov boost/detail/sp_counted_base_w32.hpp
I think that you have false positives in the list because of the "stop on copy"; it should be "follow copies" since for example:
properly shows revision 33747, while
http://svn.boost.org/trac/boost/log/trunk/boost/detail/sp_counted_base_w32.h...
does not.
http://svn.boost.org/trac/boost/log/branches/RC_1_34_0/boost/boost/detail/sp...
Sorry, I don't get your point. http://svn.boost.org/trac/boost/changeset/33417 clearly shows the branch was created at 33417. What am I missing? -- Dave Abrahams Boost Consulting http://www.boost-consulting.com

David Abrahams:
Sorry, I don't get your point.
http://svn.boost.org/trac/boost/changeset/33417 clearly shows the branch was created at 33417.
What am I missing?
You're right, sorry; the problem is on my end. I've applied the same patch to RC_1_34 and trunk as part of revision 33747.

David Abrahams wrote:
on Thu Nov 01 2007, David Abrahams <dave-AT-boost-consulting.com> wrote:
That merged all the changes from the 1.34.0 branch into the trunk. Actually I was wrong :(
The correct place to look for the base revision of 1.34.0 was:
Which reveals the base revision as 33417, not 37476
And the way you find that out without using Trac is:
svn log ----stop-on-copy http://svn.boost.org/trac/boost/log/branches/RC_1_34_0/boost
The whole process will have to be repeated again; I'm sure it will reveal a lot more unmerged changes. I'll try to get to it later tonight.
Here is the list.
Are the doc/html/... files actually a concern? --Beman M 40670 30341 dgregor doc/html/CopyConstructible.html M 40670 30341 dgregor doc/html/any.html M 40670 30341 dgregor doc/html/array.html C 40670 35175 danieljames doc/html/bbv2.html C 40670 35175 danieljames doc/html/bbv2/installation.html C 40670 33497 johnmaddock doc/html/boost_math.html C 40670 35047 johnmaddock doc/html/boost_math/gcd_lcm.html C 40670 33500 johnmaddock doc/html/boost_math/inverse_complex.html C 40670 35292 danieljames doc/html/boost_math/math_special_functions.html C 40670 35292 danieljames doc/html/boost_math/octonions.html C 40670 35292 danieljames doc/html/boost_math/quaternions.html M 40670 30341 dgregor doc/html/boost_staticassert.html M 40670 34973 danieljames doc/html/boost_tr1.html M 40670 30341 dgregor doc/html/boost_typetraits.html M 40670 30341 dgregor doc/html/boost_typetraits/background.html C 40670 39384 grafik doc/html/boostbook.css M 40670 30341 dgregor doc/html/boostbook.html M 40670 30341 dgregor doc/html/date_time.html C 40670 35292 danieljames doc/html/date_time/date_time_io.html C 40670 35292 danieljames doc/html/date_time/details.html C 40670 35292 danieljames doc/html/date_time/local_time.html C 40670 34973 danieljames doc/html/foreach.html M 40670 30341 dgregor doc/html/function.html M 40670 30341 dgregor doc/html/functionN.html C 40670 35175 danieljames doc/html/hash.html C 40670 35175 danieljames doc/html/jam.html C 40670 35175 danieljames doc/html/jam/building.html M 40670 30341 dgregor doc/html/lambda.html M 40670 30341 dgregor doc/html/program_options.html M 40670 30341 dgregor doc/html/ref.html M 40670 30341 dgregor doc/html/signals.html M 40670 30341 dgregor doc/html/string_algo.html A + 35829 dgregor doc/html/thread.html D 40670 35125 hkaiser doc/html/threads.html M 40670 30341 dgregor doc/html/tribool.html C 40670 35175 danieljames doc/html/typeof.html M 40670 30341 dgregor doc/html/variant.html M 40670 30341 dgregor doc/html/who_s_using_boost_.html C 40670 34973 danieljames doc/html/xpressive.html

on Fri Nov 02 2007, Beman Dawes <bdawes-AT-acm.org> wrote:
Are the doc/html/... files actually a concern?
Depends whether someone is going to regenerate all of them or not, I guess. -- Dave Abrahams Boost Consulting http://www.boost-consulting.com

C 40670 35661 pdimov boost/bind.hpp M 40670 27929 pdimov boost/detail/atomic_count_gcc.hpp C 40670 38976 pdimov boost/detail/sp_counted_base_w32.hpp
These seem fine.
C 40670 39282 pdimov boost/shared_ptr.hpp
Fixed.

David Abrahams ha escrito:
on Thu Nov 01 2007, David Abrahams <dave-AT-boost-consulting.com> wrote:
That merged all the changes from the 1.34.0 branch into the trunk.
Actually I was wrong :(
The correct place to look for the base revision of 1.34.0 was:
Which reveals the base revision as 33417, not 37476
And the way you find that out without using Trac is:
svn log ----stop-on-copy http://svn.boost.org/trac/boost/log/branches/RC_1_34_0/boost
The whole process will have to be repeated again; I'm sure it will reveal a lot more unmerged changes. I'll try to get to it later tonight.
Here is the list.
[...] Maybe you can provide a .zip with the whole diff output as you did with your first attempt? Thank you! Joaquín M López Muñoz Telefónica, Investigación y Desarrollo

David Abrahams wrote:
Actually I was wrong :(
The correct place to look for the base revision of 1.34.0 was:
Sorry for jumping in, but while I was trying to merge boost-build I found the following ... FWIW: When I was merging between 1.34 and trunk I found the correct date of the common branch point for 1.34 as 2006-03-21 (begin of spring). I did this from the original CVS repository. See also http://lists.boost.org/boost-build/2007/08/17161.php However I found that using the common base was not of much use for reconciliation since even for boost-build the divergence was to large. Happily however I found a point in time where the both boost-build branches almost touched again. I used this for manual merge, and asked Rene and Volodya for a check. Roland aka speedsnail
participants (8)
-
Beman Dawes
-
David Abrahams
-
Joaquín Mª López Muñoz
-
John Maddock
-
Peter Dimov
-
Robert Ramey
-
Roland Schwarz
-
Stefan Seefeld