[pkg-boost-commits] r13984 - in boost/branches/upstream/current: . boost/dynamic_bitset boost/parameter libs/dynamic_bitset libs/parameter/test

Domenico Andreoli cavok at costa.debian.org
Wed May 31 10:58:22 UTC 2006


Author: cavok
Date: 2006-05-31 10:58:21 +0000 (Wed, 31 May 2006)
New Revision: 13984

Removed:
   boost/branches/upstream/current/roots
Modified:
   boost/branches/upstream/current/boost/dynamic_bitset/dynamic_bitset.hpp
   boost/branches/upstream/current/boost/parameter/preprocessor.hpp
   boost/branches/upstream/current/libs/dynamic_bitset/bitset_test.hpp
   boost/branches/upstream/current/libs/dynamic_bitset/dyn_bitset_unit_tests3.cpp
   boost/branches/upstream/current/libs/dynamic_bitset/index.html
   boost/branches/upstream/current/libs/parameter/test/preprocessor.cpp
Log:
Load /tmp/tmp.ylTYY28511/boost-1.33.1+1.34.0-cvs20060531 into
boost/branches/upstream/current.


Modified: boost/branches/upstream/current/boost/dynamic_bitset/dynamic_bitset.hpp
===================================================================
--- boost/branches/upstream/current/boost/dynamic_bitset/dynamic_bitset.hpp	2006-05-29 13:22:35 UTC (rev 13983)
+++ boost/branches/upstream/current/boost/dynamic_bitset/dynamic_bitset.hpp	2006-05-31 10:58:21 UTC (rev 13984)
@@ -419,11 +419,19 @@
 
 };
 
-#if BOOST_WORKAROUND( __IBMCPP__, <=600 )
+#if defined(__IBMCPP__) && BOOST_WORKAROUND(__IBMCPP__, BOOST_TESTED_AT(600))
 
 // Workaround for IBM's AIX platform.
 // See http://comments.gmane.org/gmane.comp.lib.boost.user/15331
+//
+// Note:
+//  The compiler is actually right, until core issue 454 will be settled:
+//   http://www.open-std.org/JTC1/SC22/WG21/docs/cwg_active.html#454
+//
+//  Considering the direction taken by the committee, however, the
+//  BOOST_WORKAROUND macro seems ok for the future. (G. Prota)
 
+
 template<typename Block, typename Allocator>
 dynamic_bitset<Block, Allocator>::block_width_type const
 dynamic_bitset<Block, Allocator>::bits_per_block;
@@ -1115,24 +1123,24 @@
 
   // Ok, from now on we can be sure there's no "on" bit beyond
   // the allowed positions
+  typedef unsigned long result_type;
 
+  /* if find_next() did its job correctly we don't need this if,
+     because all bits we care about are in the first block
   if (bits_per_block >= ulong_width)
-      return m_bits[0];
+    return static_cast<result_type>(m_bits[0]);*/
 
-
   size_type last_block = block_index((std::min)(m_num_bits-1, // gps
-                                    (size_type)(ulong_width-1)));
-  unsigned long result = 0;
+                                       (size_type)(ulong_width-1)));
+  result_type result = 0;
   for (size_type i = 0; i <= last_block; ++i) {
 
     assert((size_type)bits_per_block * i < (size_type)ulong_width); // gps
 
-    unsigned long piece = m_bits[i];
-    result |= (piece << (bits_per_block * i));
+    result |= (m_bits[i] << (bits_per_block * i));
   }
 
   return result;
-
 }
 
 

Modified: boost/branches/upstream/current/boost/parameter/preprocessor.hpp
===================================================================
--- boost/branches/upstream/current/boost/parameter/preprocessor.hpp	2006-05-29 13:22:35 UTC (rev 13983)
+++ boost/branches/upstream/current/boost/parameter/preprocessor.hpp	2006-05-31 10:58:21 UTC (rev 13984)
@@ -91,6 +91,21 @@
     >::type type;
 };
 
+# if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
+// Works around VC6 problem where it won't accept rvalues.
+template <class T>
+T& as_lvalue(T& value, long)
+{
+    return value;
+}
+
+template <class T>
+T const& as_lvalue(T const& value, int)
+{
+    return value;
+}
+# endif
+
 }}} // namespace boost::parameter::aux
 
 // Calculates [begin, end) arity range.
@@ -438,8 +453,14 @@
     )
 
 // Generates a keyword | default expression.
-# define BOOST_PARAMETER_FUNCTION_DEFAULT_EVAL_DEFAULT(arg) \
+# if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
+#  define BOOST_PARAMETER_FUNCTION_DEFAULT_EVAL_DEFAULT(arg) \
     BOOST_PARAMETER_FN_ARG_KEYWORD(arg) | BOOST_PARAMETER_FN_ARG_DEFAULT(arg)
+# else // For some reason, VC6 won't accept rvalues in this context.
+#  define BOOST_PARAMETER_FUNCTION_DEFAULT_EVAL_DEFAULT(arg) \
+    BOOST_PARAMETER_FN_ARG_KEYWORD(arg)  \
+      | boost::parameter::aux::as_lvalue(BOOST_PARAMETER_FN_ARG_DEFAULT(arg), 0L)
+# endif
 
 # define BOOST_PARAMETER_FUNCTION_DEFAULT_FUNCTION_BODY(name, n, split_args) \
     { \
@@ -479,23 +500,23 @@
         BOOST_PARAMETER_FUNCTION_DEFAULT_ARGUMENTS( \
             BOOST_PARAMETER_FUNCTION_DEFAULT_FUNCTION_TEMPLATE_ARG \
           , n \
-          , BOOST_PP_TUPLE_ELEM(2,1,data) \
+          , BOOST_PP_TUPLE_ELEM(3,1,data) \
         ) \
     > \
-    ResultType BOOST_PARAMETER_FUNCTION_DEFAULT_NAME(BOOST_PP_TUPLE_ELEM(2,0,data))( \
+    ResultType BOOST_PARAMETER_FUNCTION_DEFAULT_NAME(BOOST_PP_TUPLE_ELEM(3,0,data))( \
         ResultType(*)() \
       , Args const& args \
         BOOST_PARAMETER_FUNCTION_DEFAULT_ARGUMENTS( \
             BOOST_PARAMETER_FUNCTION_DEFAULT_FUNCTION_ARG \
           , n \
-          , BOOST_PP_TUPLE_ELEM(2,1,data) \
+          , BOOST_PP_TUPLE_ELEM(3,1,data) \
         ) \
-    ) \
+    ) BOOST_PP_EXPR_IF(BOOST_PP_TUPLE_ELEM(3,2,data), const) \
     BOOST_PP_IF( \
         n \
       , BOOST_PARAMETER_FUNCTION_DEFAULT_FUNCTION_BODY \
       , ; BOOST_PP_TUPLE_EAT(3) \
-    )(BOOST_PP_TUPLE_ELEM(2,0,data), n, BOOST_PP_TUPLE_ELEM(2,1,data))
+    )(BOOST_PP_TUPLE_ELEM(3,0,data), n, BOOST_PP_TUPLE_ELEM(3,1,data))
 
 # define BOOST_PARAMETER_FUNCTION_DEFAULT_GET_ARG(r, _, arg) \
     , args[BOOST_PARAMETER_FN_ARG_KEYWORD(arg)]
@@ -503,10 +524,10 @@
 // Generates the function template that recives a ArgumentPack, and then
 // goes on to call the layers of overloads generated by 
 // BOOST_PARAMETER_FUNCTION_DEFAULT_LAYER.
-# define BOOST_PARAMETER_FUNCTION_INITIAL_DISPATCH_FUNCTION(name, split_args) \
+# define BOOST_PARAMETER_FUNCTION_INITIAL_DISPATCH_FUNCTION(name, split_args, const_) \
     template <class Args> \
     typename BOOST_PARAMETER_FUNCTION_RESULT_NAME(name)<Args>::type \
-    BOOST_PARAMETER_IMPL(name)(Args const& args) \
+    BOOST_PARAMETER_IMPL(name)(Args const& args) BOOST_PP_EXPR_IF(const_, const) \
     { \
         return BOOST_PARAMETER_FUNCTION_DEFAULT_NAME(name)( \
             (typename BOOST_PARAMETER_FUNCTION_RESULT_NAME(name)<Args>::type(*)())0 \
@@ -522,14 +543,15 @@
     }
 
 // Helper for BOOST_PARAMETER_FUNCTION_DEFAULT_LAYER below.
-# define BOOST_PARAMETER_FUNCTION_DEFAULT_LAYER_AUX(name, split_args) \
-    BOOST_PP_REPEAT( \
-        BOOST_PP_INC(BOOST_PP_TUPLE_ELEM(4, 2, split_args)) \
+# define BOOST_PARAMETER_FUNCTION_DEFAULT_LAYER_AUX(name, split_args, skip_fwd_decl, const_) \
+    BOOST_PP_REPEAT_FROM_TO( \
+        skip_fwd_decl \
+      , BOOST_PP_INC(BOOST_PP_TUPLE_ELEM(4, 2, split_args)) \
       , BOOST_PARAMETER_FUNCTION_DEFAULT_FUNCTION \
-      , (name, split_args) \
+      , (name, split_args, const_) \
     ) \
  \
-    BOOST_PARAMETER_FUNCTION_INITIAL_DISPATCH_FUNCTION(name, split_args) \
+    BOOST_PARAMETER_FUNCTION_INITIAL_DISPATCH_FUNCTION(name, split_args, const_) \
 \
     template < \
         class ResultType \
@@ -548,13 +570,13 @@
           , 0 \
           , split_args \
         ) \
-    )
+    ) BOOST_PP_EXPR_IF(const_, const)
 
 // Generates a bunch of forwarding functions that each extract
 // one more argument.
-# define BOOST_PARAMETER_FUNCTION_DEFAULT_LAYER(name, args) \
+# define BOOST_PARAMETER_FUNCTION_DEFAULT_LAYER(name, args, skip_fwd_decl, const_) \
     BOOST_PARAMETER_FUNCTION_DEFAULT_LAYER_AUX( \
-        name, BOOST_PARAMETER_FUNCTION_SPLIT_ARGS(args) \
+        name, BOOST_PARAMETER_FUNCTION_SPLIT_ARGS(args), skip_fwd_decl, const_ \
     )
 /**/
 
@@ -565,8 +587,8 @@
           BOOST_PARAMETER_FUNCTION_PARAMETERS(tag_namespace, name, args)    \
           BOOST_PARAMETER_FUNCTION_PARAMETERS_NAME(name);                   \
 
-// Helper for BOOST_PARAMETER_FUNCTION2 below.
-# define BOOST_PARAMETER_FUNCTION_AUX2(result, name, tag_namespace, args)    \
+// Helper for BOOST_PARAMETER_FUNCTION below.
+# define BOOST_PARAMETER_FUNCTION_AUX(result, name, tag_namespace, args)    \
     BOOST_PARAMETER_FUNCTION_HEAD(result, name, tag_namespace, args)         \
     BOOST_PARAMETER_FUNCTION_IMPL_HEAD(name); \
 \
@@ -575,18 +597,18 @@
       , BOOST_PARAMETER_FUNCTION_FWD_COMBINATIONS(args)                      \
     )                                                                        \
                                                                              \
-    BOOST_PARAMETER_FUNCTION_DEFAULT_LAYER(name, args)
+    BOOST_PARAMETER_FUNCTION_DEFAULT_LAYER(name, args, 0, 0)
 
 // Defines a Boost.Parameter enabled function with the new syntax.
-# define BOOST_PARAMETER_FUNCTION2(result, name, tag_namespace, args)    \
-    BOOST_PARAMETER_FUNCTION_AUX2(                                       \
+# define BOOST_PARAMETER_FUNCTION(result, name, tag_namespace, args)    \
+    BOOST_PARAMETER_FUNCTION_AUX(                                       \
         result, name, tag_namespace                                      \
       , BOOST_PARAMETER_FLATTEN(3, 2, 3, args)                           \
     )                                                                    \
 /**/
 
 // Defines a Boost.Parameter enabled function.
-# define BOOST_PARAMETER_FUNCTION_AUX(result, name, tag_namespace, args)    \
+# define BOOST_PARAMETER_BASIC_FUNCTION_AUX(result, name, tag_namespace, args)    \
     BOOST_PARAMETER_FUNCTION_HEAD(result, name, tag_namespace, args)        \
                                                                             \
     BOOST_PARAMETER_FUNCTION_IMPL_FWD(name)                                 \
@@ -598,15 +620,15 @@
                                                                             \
     BOOST_PARAMETER_FUNCTION_IMPL_HEAD(name)
 
-# define BOOST_PARAMETER_FUNCTION(result, name, tag_namespace, args)    \
-    BOOST_PARAMETER_FUNCTION_AUX(                                       \
+# define BOOST_PARAMETER_BASIC_FUNCTION(result, name, tag_namespace, args)  \
+    BOOST_PARAMETER_BASIC_FUNCTION_AUX(                                     \
         result, name, tag_namespace                                     \
       , BOOST_PARAMETER_FLATTEN(2, 2, 3, args)                          \
     )                                                                   \
 /**/
 
 // Defines a Boost.Parameter enabled member function.
-# define BOOST_PARAMETER_MEMBER_FUNCTION_AUX(result, name, tag_namespace, args, const_) \
+# define BOOST_PARAMETER_BASIC_MEMBER_FUNCTION_AUX(result, name, tag_namespace, args, const_) \
     BOOST_PARAMETER_FUNCTION_HEAD(result, name, tag_namespace, args)                    \
                                                                                         \
     BOOST_PARAMETER_FUNCTION_FWD_FUNCTIONS(                                             \
@@ -617,22 +639,49 @@
     BOOST_PARAMETER_FUNCTION_IMPL_HEAD(name) BOOST_PP_EXPR_IF(const_, const)            \
 /**/
 
-# define BOOST_PARAMETER_MEMBER_FUNCTION(result, name, tag_namespace, args) \
-    BOOST_PARAMETER_MEMBER_FUNCTION_AUX( \
+# define BOOST_PARAMETER_BASIC_MEMBER_FUNCTION(result, name, tag_namespace, args) \
+    BOOST_PARAMETER_BASIC_MEMBER_FUNCTION_AUX( \
         result, name, tag_namespace \
       , BOOST_PARAMETER_FLATTEN(2, 2, 3, args) \
       , 0 \
     )
 /**/
 
-# define BOOST_PARAMETER_CONST_MEMBER_FUNCTION(result, name, tag_namespace, args) \
-    BOOST_PARAMETER_MEMBER_FUNCTION_AUX( \
+# define BOOST_PARAMETER_BASIC_CONST_MEMBER_FUNCTION(result, name, tag_namespace, args) \
+    BOOST_PARAMETER_BASIC_MEMBER_FUNCTION_AUX( \
         result, name, tag_namespace \
       , BOOST_PARAMETER_FLATTEN(2, 2, 3, args) \
       , 1 \
     )
 /**/
 
+
+
+# define BOOST_PARAMETER_MEMBER_FUNCTION_AUX(result, name, tag_namespace, const_, args)    \
+    BOOST_PARAMETER_FUNCTION_HEAD(result, name, tag_namespace, args)         \
+\
+    BOOST_PARAMETER_FUNCTION_FWD_FUNCTIONS(                                  \
+        result, name, args, const_                                           \
+      , BOOST_PARAMETER_FUNCTION_FWD_COMBINATIONS(args)                      \
+    )                                                                        \
+                                                                             \
+    BOOST_PARAMETER_FUNCTION_DEFAULT_LAYER(name, args, 1, const_)
+
+// Defines a Boost.Parameter enabled function with the new syntax.
+# define BOOST_PARAMETER_MEMBER_FUNCTION(result, name, tag_namespace, args)    \
+    BOOST_PARAMETER_MEMBER_FUNCTION_AUX(                                       \
+        result, name, tag_namespace, 0                                     \
+      , BOOST_PARAMETER_FLATTEN(3, 2, 3, args)                           \
+    )                                                                    \
+/**/
+
+# define BOOST_PARAMETER_CONST_MEMBER_FUNCTION(result, name, tag_namespace, args)    \
+    BOOST_PARAMETER_MEMBER_FUNCTION_AUX(                                       \
+        result, name, tag_namespace, 1                                     \
+      , BOOST_PARAMETER_FLATTEN(3, 2, 3, args)                           \
+    )                                                                    \
+/**/
+
 // Defines a Boost.Parameter enabled constructor.
 
 # define BOOST_PARAMETER_FUNCTION_ARGUMENT(r, _, i, elem) \
@@ -757,7 +806,7 @@
     )
 /**/
 
-# ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
+# if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
 #  define BOOST_PARAMETER_FUNCTION_FWD_COMBINATION(r, _, i, elem) \
     (BOOST_PP_IF( \
         BOOST_PARAMETER_FUNCTION_IS_KEYWORD_QUALIFIER( \

Modified: boost/branches/upstream/current/libs/dynamic_bitset/bitset_test.hpp
===================================================================
--- boost/branches/upstream/current/libs/dynamic_bitset/bitset_test.hpp	2006-05-29 13:22:35 UTC (rev 13983)
+++ boost/branches/upstream/current/libs/dynamic_bitset/bitset_test.hpp	2006-05-31 10:58:21 UTC (rev 13984)
@@ -645,19 +645,11 @@
   // to_string()
   static void to_string(const Bitset& b)
   {
-    // Construct a string object of the appropriate type and initializes
-    // it to a string of length N characters. Each character is determined
-    // by the value of its corresponding bit position in b. Character
-    // position N - 1 corresponds to bit position zero. Sebsequent
-    // decreasing character positions correspond to increasing bit
-    // positions. Bit value zero becomes the charactet 0, bit value one
-    // becomes the character 1.
     std::string str;
     boost::to_string(b, str);
-    std::size_t N = b.size();
     BOOST_CHECK(str.size() == b.size());
-    for (std::size_t I = 0; I < b.size(); ++I)
-      BOOST_CHECK(b[I] == 0 ? (str[N - 1 - I] == '0') : (str[N - 1 - I] == '1'));
+    for (std::size_t i = 0; i < b.size(); ++i)
+      BOOST_CHECK(str[b.size() - 1 - i] ==(b.test(i)? '1':'0'));
   }
 
   static void count(const Bitset& b)

Modified: boost/branches/upstream/current/libs/dynamic_bitset/dyn_bitset_unit_tests3.cpp
===================================================================
--- boost/branches/upstream/current/libs/dynamic_bitset/dyn_bitset_unit_tests3.cpp	2006-05-29 13:22:35 UTC (rev 13983)
+++ boost/branches/upstream/current/libs/dynamic_bitset/dyn_bitset_unit_tests3.cpp	2006-05-31 10:58:21 UTC (rev 13984)
@@ -58,6 +58,11 @@
     Tests::to_ulong(b);
   }
   {
+    std::string str(ul_width - 1, '1');
+    boost::dynamic_bitset<Block> b(str);
+    Tests::to_ulong(b);
+  }
+  {
     std::string ul_str(ul_width, '1');
     boost::dynamic_bitset<Block> b(ul_str);
     Tests::to_ulong(b);

Modified: boost/branches/upstream/current/libs/dynamic_bitset/index.html
===================================================================
--- boost/branches/upstream/current/libs/dynamic_bitset/index.html	2006-05-29 13:22:35 UTC (rev 13983)
+++ boost/branches/upstream/current/libs/dynamic_bitset/index.html	2006-05-31 10:58:21 UTC (rev 13984)
@@ -1,9 +1,11 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
 <head>
-<meta http-equiv="refresh" content="0; URL=dynamic_bitset.html">
+<meta http-equiv=refresh content="0; URL=dynamic_bitset.html">
+<title>Automatic redirection</title>
 </head>
 <body>
 Automatic redirection failed, please go to
 <a href="dynamic_bitset.html">dynamic_bitset.html</a>.
 </body>
-</html>
\ No newline at end of file
+</html>

Modified: boost/branches/upstream/current/libs/parameter/test/preprocessor.cpp
===================================================================
--- boost/branches/upstream/current/libs/parameter/test/preprocessor.cpp	2006-05-29 13:22:35 UTC (rev 13983)
+++ boost/branches/upstream/current/libs/parameter/test/preprocessor.cpp	2006-05-31 10:58:21 UTC (rev 13984)
@@ -14,7 +14,7 @@
 
 namespace test {
 
-BOOST_PARAMETER_FUNCTION((int), f, tag,
+BOOST_PARAMETER_BASIC_FUNCTION((int), f, tag,
     (required
       (tester, *)
       (name, *)
@@ -40,7 +40,7 @@
     return 1;
 }
 
-BOOST_PARAMETER_FUNCTION((int), g, tag,
+BOOST_PARAMETER_BASIC_FUNCTION((int), g, tag,
     (required
       (tester, *)
       (name, *)
@@ -66,7 +66,7 @@
     return 1;
 }
 
-BOOST_PARAMETER_FUNCTION2((int), h, tag,
+BOOST_PARAMETER_FUNCTION((int), h, tag,
     (required
       (tester, *)
       (name, *)
@@ -88,7 +88,7 @@
     return 1;
 }
 
-BOOST_PARAMETER_FUNCTION2((int), h2, tag,
+BOOST_PARAMETER_FUNCTION((int), h2, tag,
     (required
       (tester, *)
       (name, *)
@@ -136,7 +136,7 @@
         )
     )
 
-    BOOST_PARAMETER_MEMBER_FUNCTION((int), f, tag,
+    BOOST_PARAMETER_BASIC_MEMBER_FUNCTION((int), f, tag,
         (required
           (tester, *)
           (name, *)
@@ -156,7 +156,7 @@
         return 1;
     }
 
-    BOOST_PARAMETER_CONST_MEMBER_FUNCTION((int), f, tag,
+    BOOST_PARAMETER_BASIC_CONST_MEMBER_FUNCTION((int), f, tag,
         (required
           (tester, *)
           (name, *)
@@ -175,6 +175,36 @@
 
         return 1;
     }
+
+    BOOST_PARAMETER_MEMBER_FUNCTION((int), f2, tag,
+        (required
+          (tester, *)
+          (name, *)
+        )
+        (optional
+          (value, *, 1.f)
+          (index, *, 2)
+        )
+    )
+    {
+        tester(name, value, index);
+        return 1;
+    }
+
+    BOOST_PARAMETER_CONST_MEMBER_FUNCTION((int), f2, tag,
+        (required
+          (tester, *)
+          (name, *)
+        )
+        (optional
+          (value, *, 1.f)
+          (index, *, 2)
+        )
+    )
+    {
+        tester(name, value, index);
+        return 1;
+    }
 };
 
 BOOST_PARAMETER_FUNCTION(
@@ -262,6 +292,16 @@
       , name = S("foo")
     );
 
+    x.f2(
+        tester = values(S("foo"), 1.f, 2)
+      , S("foo")
+    );
+
+    x.f2(
+        tester = values(S("foo"), 1.f, 2)
+      , name = S("foo")
+    );
+
     class_ const& x_const = x;
 
     x_const.f(
@@ -273,7 +313,22 @@
         tester = values(S("foo"), 1.f, 2)
       , name = S("foo")
     );
-   
+
+    x_const.f2(
+        tester = values(S("foo"), 1.f, 2)
+      , S("foo")
+    );
+
+    x_const.f2(
+        tester = values(S("foo"), 1.f, 2)
+      , name = S("foo")
+    );
+
+    x_const.f2(
+        tester = values(S("foo"), 1.f, 2)
+      , name = S("foo")
+    );
+
 #ifndef BOOST_NO_SFINAE
     assert(sfinae("foo") == 1);
     assert(sfinae(1) == 0);

Deleted: boost/branches/upstream/current/roots
===================================================================
--- boost/branches/upstream/current/roots	2006-05-29 13:22:35 UTC (rev 13983)
+++ boost/branches/upstream/current/roots	2006-05-31 10:58:21 UTC (rev 13984)
@@ -1,908 +0,0 @@
-./CVS/Root
-./doc/CVS/Root
-./doc/src/CVS/Root
-./doc/html/CVS/Root
-./doc/html/boost_math_tr1_additions/CVS/Root
-./doc/html/images/CVS/Root
-./doc/html/boost_typetraits/CVS/Root
-./libs/io/CVS/Root
-./libs/io/doc/CVS/Root
-./libs/io/test/CVS/Root
-./libs/CVS/Root
-./libs/any/CVS/Root
-./libs/any/doc/CVS/Root
-./libs/any/test/CVS/Root
-./libs/crc/CVS/Root
-./libs/mpl/CVS/Root
-./libs/mpl/doc/CVS/Root
-./libs/mpl/doc/src/CVS/Root
-./libs/mpl/doc/src/refmanual/CVS/Root
-./libs/mpl/doc/paper/CVS/Root
-./libs/mpl/doc/tutorial/CVS/Root
-./libs/mpl/doc/refmanual/CVS/Root
-./libs/mpl/book/CVS/Root
-./libs/mpl/book/chapter1/CVS/Root
-./libs/mpl/test/CVS/Root
-./libs/mpl/test/aux_/CVS/Root
-./libs/mpl/test/aux_/preprocessor/CVS/Root
-./libs/mpl/preprocessed/CVS/Root
-./libs/mpl/preprocessed/map/CVS/Root
-./libs/mpl/preprocessed/set/CVS/Root
-./libs/mpl/preprocessed/src/CVS/Root
-./libs/mpl/preprocessed/list/CVS/Root
-./libs/mpl/preprocessed/vector/CVS/Root
-./libs/mpl/preprocessed/include/CVS/Root
-./libs/mpl/preprocessed/include/bcc/CVS/Root
-./libs/mpl/preprocessed/include/dmc/CVS/Root
-./libs/mpl/preprocessed/include/gcc/CVS/Root
-./libs/mpl/preprocessed/include/mwcw/CVS/Root
-./libs/mpl/preprocessed/include/typeof_based/CVS/Root
-./libs/mpl/preprocessed/include/plain/CVS/Root
-./libs/mpl/preprocessed/include/bcc551/CVS/Root
-./libs/mpl/preprocessed/include/msvc60/CVS/Root
-./libs/mpl/preprocessed/include/msvc70/CVS/Root
-./libs/mpl/preprocessed/include/no_ttp/CVS/Root
-./libs/mpl/preprocessed/include/no_ctps/CVS/Root
-./libs/mpl/example/CVS/Root
-./libs/mpl/example/fsm/CVS/Root
-./libs/mpl/example/fsm/aux_/CVS/Root
-./libs/tr1/CVS/Root
-./libs/tr1/doc/CVS/Root
-./libs/tr1/test/CVS/Root
-./libs/tr1/test/config/CVS/Root
-./libs/tr1/test/std_headers/CVS/Root
-./libs/tr1/test/type_traits/CVS/Root
-./libs/bind/CVS/Root
-./libs/bind/doc/CVS/Root
-./libs/bind/test/CVS/Root
-./libs/math/CVS/Root
-./libs/math/doc/CVS/Root
-./libs/math/doc/images/CVS/Root
-./libs/math/test/CVS/Root
-./libs/math/tools/CVS/Root
-./libs/math/quaternion/CVS/Root
-./libs/math/quaternion/graphics/CVS/Root
-./libs/math/special_functions/CVS/Root
-./libs/math/special_functions/graphics/CVS/Root
-./libs/math/octonion/CVS/Root
-./libs/math/octonion/graphics/CVS/Root
-./libs/pool/CVS/Root
-./libs/pool/doc/CVS/Root
-./libs/pool/doc/interfaces/CVS/Root
-./libs/pool/doc/implementation/CVS/Root
-./libs/pool/test/CVS/Root
-./libs/test/CVS/Root
-./libs/test/doc/CVS/Root
-./libs/test/doc/tests/CVS/Root
-./libs/test/doc/style/CVS/Root
-./libs/test/doc/usage/CVS/Root
-./libs/test/doc/usage/imgs/CVS/Root
-./libs/test/doc/components/CVS/Root
-./libs/test/doc/components/utf/CVS/Root
-./libs/test/doc/components/utf/components/CVS/Root
-./libs/test/doc/components/utf/components/test_suite/CVS/Root
-./libs/test/doc/components/utf/components/test_log/CVS/Root
-./libs/test/doc/components/utf/components/test_result/CVS/Root
-./libs/test/doc/components/utf/components/test_case/CVS/Root
-./libs/test/doc/components/utf/parameters/CVS/Root
-./libs/test/doc/components/test_tools/CVS/Root
-./libs/test/doc/components/test_tools/reference/CVS/Root
-./libs/test/doc/components/execution_monitor/CVS/Root
-./libs/test/doc/components/minimal_testing/CVS/Root
-./libs/test/doc/components/prg_exec_monitor/CVS/Root
-./libs/test/doc/tutorials/CVS/Root
-./libs/test/doc/examples/CVS/Root
-./libs/test/src/CVS/Root
-./libs/test/test/CVS/Root
-./libs/test/test/test_files/CVS/Root
-./libs/test/test/auto-link-test/CVS/Root
-./libs/test/build/CVS/Root
-./libs/test/build/msvc71_proj/CVS/Root
-./libs/test/tools/CVS/Root
-./libs/test/tools/console_test_runner/CVS/Root
-./libs/test/tools/console_test_runner/src/CVS/Root
-./libs/test/tools/console_test_runner/test/CVS/Root
-./libs/test/example/CVS/Root
-./libs/test/example/cla/CVS/Root
-./libs/test/example/cla/validation/CVS/Root
-./libs/test/example/env/CVS/Root
-./libs/test/example/env/validation/CVS/Root
-./libs/wave/CVS/Root
-./libs/wave/doc/CVS/Root
-./libs/wave/doc/theme/CVS/Root
-./libs/wave/src/CVS/Root
-./libs/wave/src/cpplexer/CVS/Root
-./libs/wave/src/cpplexer/re2clex/CVS/Root
-./libs/wave/test/CVS/Root
-./libs/wave/test/build/CVS/Root
-./libs/wave/test/testlexers/CVS/Root
-./libs/wave/test/testwave/CVS/Root
-./libs/wave/test/testwave/testfiles/CVS/Root
-./libs/wave/build/CVS/Root
-./libs/wave/samples/CVS/Root
-./libs/wave/samples/list_includes/CVS/Root
-./libs/wave/samples/list_includes/build/CVS/Root
-./libs/wave/samples/cpp_tokens/CVS/Root
-./libs/wave/samples/cpp_tokens/slex/CVS/Root
-./libs/wave/samples/cpp_tokens/build/CVS/Root
-./libs/wave/samples/advanced_hooks/CVS/Root
-./libs/wave/samples/advanced_hooks/build/CVS/Root
-./libs/wave/samples/waveidl/CVS/Root
-./libs/wave/samples/waveidl/build/CVS/Root
-./libs/wave/samples/waveidl/idllexer/CVS/Root
-./libs/wave/samples/lexed_tokens/CVS/Root
-./libs/wave/samples/lexed_tokens/build/CVS/Root
-./libs/wave/samples/quick_start/CVS/Root
-./libs/wave/samples/quick_start/build/CVS/Root
-./libs/dynamic_bitset/CVS/Root
-./libs/dynamic_bitset/example/CVS/Root
-./libs/compose/CVS/Root
-./libs/array/CVS/Root
-./libs/array/doc/CVS/Root
-./libs/graph/CVS/Root
-./libs/graph/doc/CVS/Root
-./libs/graph/doc/figs/CVS/Root
-./libs/graph/src/CVS/Root
-./libs/graph/src/python/CVS/Root
-./libs/graph/test/CVS/Root
-./libs/graph/test/python/CVS/Root
-./libs/graph/build/CVS/Root
-./libs/graph/build/python/CVS/Root
-./libs/graph/example/CVS/Root
-./libs/graph/example/figs/CVS/Root
-./libs/graph/example/python/CVS/Root
-./libs/logic/CVS/Root
-./libs/logic/doc/CVS/Root
-./libs/logic/test/CVS/Root
-./libs/function/CVS/Root
-./libs/function/doc/CVS/Root
-./libs/function/test/CVS/Root
-./libs/function/example/CVS/Root
-./libs/range/CVS/Root
-./libs/range/doc/CVS/Root
-./libs/range/test/CVS/Root
-./libs/regex/CVS/Root
-./libs/regex/doc/CVS/Root
-./libs/regex/src/CVS/Root
-./libs/regex/test/CVS/Root
-./libs/regex/test/static_mutex/CVS/Root
-./libs/regex/test/regress/CVS/Root
-./libs/regex/test/collate_info/CVS/Root
-./libs/regex/test/pathology/CVS/Root
-./libs/regex/test/concepts/CVS/Root
-./libs/regex/test/captures/CVS/Root
-./libs/regex/test/object_cache/CVS/Root
-./libs/regex/test/auto-link-test/CVS/Root
-./libs/regex/test/config_info/CVS/Root
-./libs/regex/test/unicode/CVS/Root
-./libs/regex/test/c_compiler_checks/CVS/Root
-./libs/regex/test/profile/CVS/Root
-./libs/regex/build/CVS/Root
-./libs/regex/tools/CVS/Root
-./libs/regex/tools/generate/CVS/Root
-./libs/regex/example/CVS/Root
-./libs/regex/example/grep/CVS/Root
-./libs/regex/example/timer/CVS/Root
-./libs/regex/example/snippets/CVS/Root
-./libs/regex/performance/CVS/Root
-./libs/timer/CVS/Root
-./libs/tuple/CVS/Root
-./libs/tuple/doc/CVS/Root
-./libs/tuple/test/CVS/Root
-./libs/disjoint_sets/CVS/Root
-./libs/preprocessor/CVS/Root
-./libs/preprocessor/doc/CVS/Root
-./libs/preprocessor/doc/ref/CVS/Root
-./libs/preprocessor/doc/data/CVS/Root
-./libs/preprocessor/doc/terms/CVS/Root
-./libs/preprocessor/doc/headers/CVS/Root
-./libs/preprocessor/doc/headers/seq/CVS/Root
-./libs/preprocessor/doc/headers/list/CVS/Root
-./libs/preprocessor/doc/headers/slot/CVS/Root
-./libs/preprocessor/doc/headers/control/CVS/Root
-./libs/preprocessor/doc/headers/facilities/CVS/Root
-./libs/preprocessor/doc/headers/selection/CVS/Root
-./libs/preprocessor/doc/headers/array/CVS/Root
-./libs/preprocessor/doc/headers/debug/CVS/Root
-./libs/preprocessor/doc/headers/tuple/CVS/Root
-./libs/preprocessor/doc/headers/comparison/CVS/Root
-./libs/preprocessor/doc/headers/logical/CVS/Root
-./libs/preprocessor/doc/headers/config/CVS/Root
-./libs/preprocessor/doc/headers/iteration/CVS/Root
-./libs/preprocessor/doc/headers/punctuation/CVS/Root
-./libs/preprocessor/doc/headers/arithmetic/CVS/Root
-./libs/preprocessor/doc/headers/repetition/CVS/Root
-./libs/preprocessor/doc/topics/CVS/Root
-./libs/preprocessor/doc/examples/CVS/Root
-./libs/preprocessor/test/CVS/Root
-./libs/date_time/CVS/Root
-./libs/date_time/doc/CVS/Root
-./libs/date_time/src/CVS/Root
-./libs/date_time/src/gregorian/CVS/Root
-./libs/date_time/src/posix_time/CVS/Root
-./libs/date_time/data/CVS/Root
-./libs/date_time/test/CVS/Root
-./libs/date_time/test/gregorian/CVS/Root
-./libs/date_time/test/local_time/CVS/Root
-./libs/date_time/test/posix_time/CVS/Root
-./libs/date_time/build/CVS/Root
-./libs/date_time/example/CVS/Root
-./libs/date_time/example/gregorian/CVS/Root
-./libs/date_time/example/local_time/CVS/Root
-./libs/date_time/example/posix_time/CVS/Root
-./libs/date_time/example/tutorial/CVS/Root
-./libs/date_time/xmldoc/CVS/Root
-./libs/signals/CVS/Root
-./libs/signals/doc/CVS/Root
-./libs/signals/doc/reference/CVS/Root
-./libs/signals/src/CVS/Root
-./libs/signals/test/CVS/Root
-./libs/signals/build/CVS/Root
-./libs/signals/example/CVS/Root
-./libs/functional/CVS/Root
-./libs/functional/hash/CVS/Root
-./libs/functional/hash/doc/CVS/Root
-./libs/functional/hash/test/CVS/Root
-./libs/functional/hash/examples/CVS/Root
-./libs/algorithm/CVS/Root
-./libs/algorithm/minmax/CVS/Root
-./libs/algorithm/minmax/doc/CVS/Root
-./libs/algorithm/minmax/test/CVS/Root
-./libs/algorithm/minmax/example/CVS/Root
-./libs/algorithm/string/CVS/Root
-./libs/algorithm/string/doc/CVS/Root
-./libs/algorithm/string/test/CVS/Root
-./libs/algorithm/string/example/CVS/Root
-./libs/assign/CVS/Root
-./libs/assign/doc/CVS/Root
-./libs/assign/test/CVS/Root
-./libs/config/CVS/Root
-./libs/config/test/CVS/Root
-./libs/config/test/abi/CVS/Root
-./libs/config/test/link/CVS/Root
-./libs/config/test/link/test/CVS/Root
-./libs/config/test/threads/CVS/Root
-./libs/config/tools/CVS/Root
-./libs/detail/CVS/Root
-./libs/foreach/CVS/Root
-./libs/foreach/doc/CVS/Root
-./libs/foreach/test/CVS/Root
-./libs/smart_ptr/CVS/Root
-./libs/smart_ptr/src/CVS/Root
-./libs/smart_ptr/test/CVS/Root
-./libs/smart_ptr/example/CVS/Root
-./libs/format/CVS/Root
-./libs/format/doc/CVS/Root
-./libs/format/test/CVS/Root
-./libs/format/example/CVS/Root
-./libs/format/benchmark/CVS/Root
-./libs/concept_check/CVS/Root
-./libs/concept_check/doc/CVS/Root
-./libs/concept_check/doc/reference/CVS/Root
-./libs/static_assert/CVS/Root
-./libs/static_assert/doc/CVS/Root
-./libs/tokenizer/CVS/Root
-./libs/xpressive/CVS/Root
-./libs/xpressive/doc/CVS/Root
-./libs/xpressive/perf/CVS/Root
-./libs/xpressive/perf/gcc/CVS/Root
-./libs/xpressive/perf/msvc/CVS/Root
-./libs/xpressive/test/CVS/Root
-./libs/xpressive/example/CVS/Root
-./libs/property_map/CVS/Root
-./libs/property_map/doc/CVS/Root
-./libs/property_map/test/CVS/Root
-./libs/serialization/CVS/Root
-./libs/serialization/doc/CVS/Root
-./libs/serialization/src/CVS/Root
-./libs/serialization/test/CVS/Root
-./libs/serialization/build/CVS/Root
-./libs/serialization/example/CVS/Root
-./libs/serialization/vc6ide/CVS/Root
-./libs/serialization/vc7ide/CVS/Root
-./libs/serialization/borland6ide/CVS/Root
-./libs/iostreams/CVS/Root
-./libs/iostreams/doc/CVS/Root
-./libs/iostreams/doc/tree/CVS/Root
-./libs/iostreams/doc/guide/CVS/Root
-./libs/iostreams/doc/graphics/CVS/Root
-./libs/iostreams/doc/theme/CVS/Root
-./libs/iostreams/doc/concepts/CVS/Root
-./libs/iostreams/doc/macros/CVS/Root
-./libs/iostreams/doc/functions/CVS/Root
-./libs/iostreams/doc/tutorial/CVS/Root
-./libs/iostreams/doc/classes/CVS/Root
-./libs/iostreams/src/CVS/Root
-./libs/iostreams/test/CVS/Root
-./libs/iostreams/test/detail/CVS/Root
-./libs/iostreams/build/CVS/Root
-./libs/iostreams/example/CVS/Root
-./libs/lambda/CVS/Root
-./libs/lambda/doc/CVS/Root
-./libs/lambda/doc/detail/CVS/Root
-./libs/lambda/test/CVS/Root
-./libs/filesystem/CVS/Root
-./libs/filesystem/doc/CVS/Root
-./libs/filesystem/src/CVS/Root
-./libs/filesystem/test/CVS/Root
-./libs/filesystem/build/CVS/Root
-./libs/filesystem/example/CVS/Root
-./libs/mem_fn/CVS/Root
-./libs/rational/CVS/Root
-./libs/variant/CVS/Root
-./libs/variant/doc/CVS/Root
-./libs/variant/doc/tutorial/CVS/Root
-./libs/variant/doc/reference/CVS/Root
-./libs/variant/test/CVS/Root
-./libs/random/CVS/Root
-./libs/random/test/CVS/Root
-./libs/statechart/CVS/Root
-./libs/statechart/doc/CVS/Root
-./libs/statechart/test/CVS/Root
-./libs/statechart/example/CVS/Root
-./libs/statechart/example/Camera/CVS/Root
-./libs/statechart/example/PingPong/CVS/Root
-./libs/statechart/example/StopWatch/CVS/Root
-./libs/statechart/example/BitMachine/CVS/Root
-./libs/statechart/example/Handcrafted/CVS/Root
-./libs/statechart/example/Keyboard/CVS/Root
-./libs/statechart/example/Performance/CVS/Root
-./libs/python/CVS/Root
-./libs/python/doc/v2/CVS/Root
-./libs/python/doc/CVS/Root
-./libs/python/doc/PyConDC_2003/CVS/Root
-./libs/python/doc/tutorial/CVS/Root
-./libs/python/doc/tutorial/doc/CVS/Root
-./libs/python/doc/tutorial/doc/html/CVS/Root
-./libs/python/doc/tutorial/doc/html/images/CVS/Root
-./libs/python/doc/tutorial/doc/html/python/CVS/Root
-./libs/python/src/CVS/Root
-./libs/python/src/converter/CVS/Root
-./libs/python/src/object/CVS/Root
-./libs/python/test/CVS/Root
-./libs/python/build/CVS/Root
-./libs/python/build/VisualStudio/CVS/Root
-./libs/python/pyste/CVS/Root
-./libs/python/pyste/doc/CVS/Root
-./libs/python/pyste/doc/theme/CVS/Root
-./libs/python/pyste/src/CVS/Root
-./libs/python/pyste/src/Pyste/CVS/Root
-./libs/python/pyste/dist/CVS/Root
-./libs/python/pyste/tests/CVS/Root
-./libs/python/pyste/install/CVS/Root
-./libs/python/example/CVS/Root
-./libs/python/example/tutorial/CVS/Root
-./libs/compatibility/CVS/Root
-./libs/spirit/CVS/Root
-./libs/spirit/doc/CVS/Root
-./libs/spirit/doc/theme/CVS/Root
-./libs/spirit/test/CVS/Root
-./libs/spirit/test/impl/CVS/Root
-./libs/spirit/test/actor/CVS/Root
-./libs/spirit/test/typeof_support/CVS/Root
-./libs/spirit/example/CVS/Root
-./libs/spirit/example/fundamental/CVS/Root
-./libs/spirit/example/fundamental/distinct/CVS/Root
-./libs/spirit/example/fundamental/position_iterator/CVS/Root
-./libs/spirit/example/fundamental/more_calculators/CVS/Root
-./libs/spirit/example/intermediate/CVS/Root
-./libs/spirit/example/intermediate/simple_xml/CVS/Root
-./libs/spirit/example/techniques/CVS/Root
-./libs/spirit/example/techniques/no_rules_with_typeof/CVS/Root
-./libs/spirit/example/techniques/no_rules/CVS/Root
-./libs/spirit/fusion/CVS/Root
-./libs/spirit/fusion/test/CVS/Root
-./libs/spirit/phoenix/CVS/Root
-./libs/spirit/phoenix/doc/CVS/Root
-./libs/spirit/phoenix/doc/theme/CVS/Root
-./libs/spirit/phoenix/test/CVS/Root
-./libs/spirit/phoenix/example/CVS/Root
-./libs/spirit/phoenix/example/fundamental/CVS/Root
-./libs/thread/CVS/Root
-./libs/thread/doc/CVS/Root
-./libs/thread/src/CVS/Root
-./libs/thread/src/mac/CVS/Root
-./libs/thread/src/mac/msl_replacements/CVS/Root
-./libs/thread/test/CVS/Root
-./libs/thread/build/CVS/Root
-./libs/thread/example/CVS/Root
-./libs/thread/tutorial/CVS/Root
-./libs/iterator/CVS/Root
-./libs/iterator/doc/CVS/Root
-./libs/iterator/doc/quickbook/CVS/Root
-./libs/iterator/test/CVS/Root
-./libs/iterator/example/CVS/Root
-./libs/typeof/CVS/Root
-./libs/typeof/doc/CVS/Root
-./libs/typeof/test/CVS/Root
-./libs/typeof/tools/CVS/Root
-./libs/conversion/CVS/Root
-./libs/conversion/test/CVS/Root
-./libs/numeric/CVS/Root
-./libs/numeric/ublas/CVS/Root
-./libs/numeric/ublas/doc/CVS/Root
-./libs/numeric/ublas/doc/samples/CVS/Root
-./libs/numeric/ublas/test/CVS/Root
-./libs/numeric/ublas/test/test1/CVS/Root
-./libs/numeric/ublas/test/test2/CVS/Root
-./libs/numeric/ublas/test/test3/CVS/Root
-./libs/numeric/ublas/test/test4/CVS/Root
-./libs/numeric/ublas/test/test5/CVS/Root
-./libs/numeric/ublas/test/test6/CVS/Root
-./libs/numeric/ublas/test/test7/CVS/Root
-./libs/numeric/ublas/test/common/CVS/Root
-./libs/numeric/ublas/bench1/CVS/Root
-./libs/numeric/ublas/bench2/CVS/Root
-./libs/numeric/ublas/bench3/CVS/Root
-./libs/numeric/ublas/bench4/CVS/Root
-./libs/numeric/conversion/CVS/Root
-./libs/numeric/conversion/doc/CVS/Root
-./libs/numeric/conversion/test/CVS/Root
-./libs/numeric/interval/CVS/Root
-./libs/numeric/interval/doc/CVS/Root
-./libs/numeric/interval/test/CVS/Root
-./libs/numeric/interval/examples/CVS/Root
-./libs/utility/CVS/Root
-./libs/utility/test/CVS/Root
-./libs/utility/enable_if/CVS/Root
-./libs/utility/enable_if/test/CVS/Root
-./libs/multi_array/CVS/Root
-./libs/multi_array/doc/CVS/Root
-./libs/multi_array/doc/xml/CVS/Root
-./libs/multi_array/test/CVS/Root
-./libs/multi_array/example/CVS/Root
-./libs/multi_index/CVS/Root
-./libs/multi_index/doc/CVS/Root
-./libs/multi_index/doc/tutorial/CVS/Root
-./libs/multi_index/doc/reference/CVS/Root
-./libs/multi_index/perf/CVS/Root
-./libs/multi_index/test/CVS/Root
-./libs/multi_index/example/CVS/Root
-./libs/parameter/CVS/Root
-./libs/parameter/doc/CVS/Root
-./libs/parameter/doc/html/CVS/Root
-./libs/parameter/test/CVS/Root
-./libs/optional/CVS/Root
-./libs/optional/doc/CVS/Root
-./libs/optional/test/CVS/Root
-./libs/integer/CVS/Root
-./libs/integer/doc/CVS/Root
-./libs/integer/test/CVS/Root
-./libs/program_options/CVS/Root
-./libs/program_options/doc/CVS/Root
-./libs/program_options/src/CVS/Root
-./libs/program_options/test/CVS/Root
-./libs/program_options/build/CVS/Root
-./libs/program_options/example/CVS/Root
-./libs/ptr_container/CVS/Root
-./libs/ptr_container/doc/CVS/Root
-./libs/ptr_container/test/CVS/Root
-./libs/type_traits/CVS/Root
-./libs/type_traits/doc/CVS/Root
-./libs/type_traits/test/CVS/Root
-./libs/type_traits/tools/CVS/Root
-./libs/type_traits/examples/CVS/Root
-./more/CVS/Root
-./more/css_0/CVS/Root
-./more/writingdoc/CVS/Root
-./more/writingdoc/template/CVS/Root
-./more/whos_using/CVS/Root
-./wiki/CVS/Root
-./regression/CVS/Root
-./boost/io/CVS/Root
-./boost/CVS/Root
-./boost/mpl/CVS/Root
-./boost/mpl/map/CVS/Root
-./boost/mpl/map/aux_/CVS/Root
-./boost/mpl/map/aux_/preprocessed/CVS/Root
-./boost/mpl/map/aux_/preprocessed/typeof_based/CVS/Root
-./boost/mpl/map/aux_/preprocessed/plain/CVS/Root
-./boost/mpl/map/aux_/preprocessed/no_ctps/CVS/Root
-./boost/mpl/set/CVS/Root
-./boost/mpl/set/aux_/CVS/Root
-./boost/mpl/set/aux_/preprocessed/CVS/Root
-./boost/mpl/set/aux_/preprocessed/plain/CVS/Root
-./boost/mpl/aux_/CVS/Root
-./boost/mpl/aux_/test/CVS/Root
-./boost/mpl/aux_/range_c/CVS/Root
-./boost/mpl/aux_/preprocessed/CVS/Root
-./boost/mpl/aux_/preprocessed/bcc/CVS/Root
-./boost/mpl/aux_/preprocessed/dmc/CVS/Root
-./boost/mpl/aux_/preprocessed/gcc/CVS/Root
-./boost/mpl/aux_/preprocessed/mwcw/CVS/Root
-./boost/mpl/aux_/preprocessed/plain/CVS/Root
-./boost/mpl/aux_/preprocessed/bcc551/CVS/Root
-./boost/mpl/aux_/preprocessed/msvc60/CVS/Root
-./boost/mpl/aux_/preprocessed/msvc70/CVS/Root
-./boost/mpl/aux_/preprocessed/no_ttp/CVS/Root
-./boost/mpl/aux_/preprocessed/no_ctps/CVS/Root
-./boost/mpl/aux_/preprocessor/CVS/Root
-./boost/mpl/aux_/config/CVS/Root
-./boost/mpl/list/CVS/Root
-./boost/mpl/list/aux_/CVS/Root
-./boost/mpl/list/aux_/preprocessed/CVS/Root
-./boost/mpl/list/aux_/preprocessed/plain/CVS/Root
-./boost/mpl/math/CVS/Root
-./boost/mpl/multiset/CVS/Root
-./boost/mpl/multiset/aux_/CVS/Root
-./boost/mpl/limits/CVS/Root
-./boost/mpl/vector/CVS/Root
-./boost/mpl/vector/aux_/CVS/Root
-./boost/mpl/vector/aux_/preprocessed/CVS/Root
-./boost/mpl/vector/aux_/preprocessed/typeof_based/CVS/Root
-./boost/mpl/vector/aux_/preprocessed/plain/CVS/Root
-./boost/mpl/vector/aux_/preprocessed/no_ctps/CVS/Root
-./boost/tr1/CVS/Root
-./boost/tr1/tr1/CVS/Root
-./boost/tr1/tr1/bcc32/CVS/Root
-./boost/tr1/detail/CVS/Root
-./boost/bind/CVS/Root
-./boost/math/CVS/Root
-./boost/math/complex/CVS/Root
-./boost/math/special_functions/CVS/Root
-./boost/math/special_functions/detail/CVS/Root
-./boost/pool/CVS/Root
-./boost/pool/detail/CVS/Root
-./boost/test/CVS/Root
-./boost/test/impl/CVS/Root
-./boost/test/utils/CVS/Root
-./boost/test/utils/basic_cstring/CVS/Root
-./boost/test/utils/runtime/CVS/Root
-./boost/test/utils/runtime/cla/CVS/Root
-./boost/test/utils/runtime/cla/iface/CVS/Root
-./boost/test/utils/runtime/cla/detail/CVS/Root
-./boost/test/utils/runtime/env/CVS/Root
-./boost/test/utils/runtime/file/CVS/Root
-./boost/test/utils/iterator/CVS/Root
-./boost/test/detail/CVS/Root
-./boost/test/output/CVS/Root
-./boost/test/included/CVS/Root
-./boost/wave/CVS/Root
-./boost/wave/util/CVS/Root
-./boost/wave/grammars/CVS/Root
-./boost/wave/cpplexer/CVS/Root
-./boost/wave/cpplexer/re2clex/CVS/Root
-./boost/dynamic_bitset/CVS/Root
-./boost/graph/CVS/Root
-./boost/graph/detail/CVS/Root
-./boost/logic/CVS/Root
-./boost/function/CVS/Root
-./boost/function/detail/CVS/Root
-./boost/range/CVS/Root
-./boost/range/detail/CVS/Root
-./boost/range/detail/mfc/CVS/Root
-./boost/range/detail/vc6/CVS/Root
-./boost/regex/v4/CVS/Root
-./boost/regex/CVS/Root
-./boost/regex/config/CVS/Root
-./boost/regex/pending/CVS/Root
-./boost/tuple/CVS/Root
-./boost/tuple/detail/CVS/Root
-./boost/preprocessor/CVS/Root
-./boost/preprocessor/seq/CVS/Root
-./boost/preprocessor/seq/detail/CVS/Root
-./boost/preprocessor/list/CVS/Root
-./boost/preprocessor/list/detail/CVS/Root
-./boost/preprocessor/list/detail/dmc/CVS/Root
-./boost/preprocessor/list/detail/edg/CVS/Root
-./boost/preprocessor/slot/CVS/Root
-./boost/preprocessor/slot/detail/CVS/Root
-./boost/preprocessor/control/CVS/Root
-./boost/preprocessor/control/detail/CVS/Root
-./boost/preprocessor/control/detail/dmc/CVS/Root
-./boost/preprocessor/control/detail/edg/CVS/Root
-./boost/preprocessor/control/detail/msvc/CVS/Root
-./boost/preprocessor/facilities/CVS/Root
-./boost/preprocessor/selection/CVS/Root
-./boost/preprocessor/array/CVS/Root
-./boost/preprocessor/debug/CVS/Root
-./boost/preprocessor/tuple/CVS/Root
-./boost/preprocessor/comparison/CVS/Root
-./boost/preprocessor/logical/CVS/Root
-./boost/preprocessor/config/CVS/Root
-./boost/preprocessor/detail/CVS/Root
-./boost/preprocessor/detail/dmc/CVS/Root
-./boost/preprocessor/iteration/CVS/Root
-./boost/preprocessor/iteration/detail/CVS/Root
-./boost/preprocessor/iteration/detail/iter/CVS/Root
-./boost/preprocessor/iteration/detail/bounds/CVS/Root
-./boost/preprocessor/punctuation/CVS/Root
-./boost/preprocessor/arithmetic/CVS/Root
-./boost/preprocessor/arithmetic/detail/CVS/Root
-./boost/preprocessor/repetition/CVS/Root
-./boost/preprocessor/repetition/detail/CVS/Root
-./boost/preprocessor/repetition/detail/dmc/CVS/Root
-./boost/preprocessor/repetition/detail/edg/CVS/Root
-./boost/preprocessor/repetition/detail/msvc/CVS/Root
-./boost/date_time/CVS/Root
-./boost/date_time/gregorian/CVS/Root
-./boost/date_time/local_time/CVS/Root
-./boost/date_time/posix_time/CVS/Root
-./boost/signals/CVS/Root
-./boost/signals/detail/CVS/Root
-./boost/functional/CVS/Root
-./boost/functional/hash/CVS/Root
-./boost/functional/detail/CVS/Root
-./boost/algorithm/CVS/Root
-./boost/algorithm/string/CVS/Root
-./boost/algorithm/string/std/CVS/Root
-./boost/algorithm/string/detail/CVS/Root
-./boost/assign/CVS/Root
-./boost/assign/std/CVS/Root
-./boost/config/CVS/Root
-./boost/config/abi/CVS/Root
-./boost/config/compiler/CVS/Root
-./boost/config/no_tr1/CVS/Root
-./boost/config/stdlib/CVS/Root
-./boost/config/platform/CVS/Root
-./boost/detail/CVS/Root
-./boost/format/CVS/Root
-./boost/format/detail/CVS/Root
-./boost/xpressive/CVS/Root
-./boost/xpressive/proto/CVS/Root
-./boost/xpressive/proto/compiler/CVS/Root
-./boost/xpressive/detail/CVS/Root
-./boost/xpressive/detail/core/CVS/Root
-./boost/xpressive/detail/core/matcher/CVS/Root
-./boost/xpressive/detail/dynamic/CVS/Root
-./boost/xpressive/detail/static/CVS/Root
-./boost/xpressive/detail/static/productions/CVS/Root
-./boost/xpressive/detail/utility/CVS/Root
-./boost/xpressive/detail/utility/chset/CVS/Root
-./boost/xpressive/traits/CVS/Root
-./boost/xpressive/traits/detail/CVS/Root
-./boost/serialization/CVS/Root
-./boost/serialization/detail/CVS/Root
-./boost/iostreams/CVS/Root
-./boost/iostreams/detail/CVS/Root
-./boost/iostreams/detail/vc6/CVS/Root
-./boost/iostreams/detail/streambuf/CVS/Root
-./boost/iostreams/detail/broken_overload_resolution/CVS/Root
-./boost/iostreams/detail/config/CVS/Root
-./boost/iostreams/detail/adapter/CVS/Root
-./boost/iostreams/device/CVS/Root
-./boost/iostreams/filter/CVS/Root
-./boost/lambda/CVS/Root
-./boost/lambda/detail/CVS/Root
-./boost/filesystem/CVS/Root
-./boost/variant/CVS/Root
-./boost/variant/detail/CVS/Root
-./boost/random/CVS/Root
-./boost/random/detail/CVS/Root
-./boost/statechart/CVS/Root
-./boost/statechart/detail/CVS/Root
-./boost/python/CVS/Root
-./boost/python/suite/CVS/Root
-./boost/python/suite/indexing/CVS/Root
-./boost/python/suite/indexing/detail/CVS/Root
-./boost/python/converter/CVS/Root
-./boost/python/detail/CVS/Root
-./boost/python/object/CVS/Root
-./boost/compatibility/CVS/Root
-./boost/compatibility/cpp_c_headers/CVS/Root
-./boost/spirit/CVS/Root
-./boost/spirit/core/CVS/Root
-./boost/spirit/core/impl/CVS/Root
-./boost/spirit/core/scanner/CVS/Root
-./boost/spirit/core/scanner/impl/CVS/Root
-./boost/spirit/core/composite/CVS/Root
-./boost/spirit/core/composite/impl/CVS/Root
-./boost/spirit/core/primitives/CVS/Root
-./boost/spirit/core/primitives/impl/CVS/Root
-./boost/spirit/core/non_terminal/CVS/Root
-./boost/spirit/core/non_terminal/impl/CVS/Root
-./boost/spirit/meta/CVS/Root
-./boost/spirit/meta/impl/CVS/Root
-./boost/spirit/tree/CVS/Root
-./boost/spirit/tree/impl/CVS/Root
-./boost/spirit/actor/CVS/Root
-./boost/spirit/debug/CVS/Root
-./boost/spirit/debug/impl/CVS/Root
-./boost/spirit/attribute/CVS/Root
-./boost/spirit/error_handling/CVS/Root
-./boost/spirit/error_handling/impl/CVS/Root
-./boost/spirit/dynamic/CVS/Root
-./boost/spirit/dynamic/impl/CVS/Root
-./boost/spirit/fusion/CVS/Root
-./boost/spirit/fusion/algorithm/CVS/Root
-./boost/spirit/fusion/algorithm/detail/CVS/Root
-./boost/spirit/fusion/detail/CVS/Root
-./boost/spirit/fusion/iterator/CVS/Root
-./boost/spirit/fusion/iterator/detail/CVS/Root
-./boost/spirit/fusion/iterator/detail/filter_view_iterator/CVS/Root
-./boost/spirit/fusion/iterator/detail/joint_view_iterator/CVS/Root
-./boost/spirit/fusion/iterator/detail/tuple_iterator/CVS/Root
-./boost/spirit/fusion/iterator/detail/transform_view_iterator/CVS/Root
-./boost/spirit/fusion/iterator/detail/single_view_iterator/CVS/Root
-./boost/spirit/fusion/iterator/detail/cons_iterator/CVS/Root
-./boost/spirit/fusion/iterator/detail/type_sequence_iterator/CVS/Root
-./boost/spirit/fusion/sequence/CVS/Root
-./boost/spirit/fusion/sequence/detail/CVS/Root
-./boost/spirit/symbols/CVS/Root
-./boost/spirit/symbols/impl/CVS/Root
-./boost/spirit/iterator/CVS/Root
-./boost/spirit/iterator/impl/CVS/Root
-./boost/spirit/utility/CVS/Root
-./boost/spirit/utility/impl/CVS/Root
-./boost/spirit/utility/impl/chset/CVS/Root
-./boost/spirit/phoenix/CVS/Root
-./boost/thread/CVS/Root
-./boost/thread/detail/CVS/Root
-./boost/iterator/CVS/Root
-./boost/iterator/detail/CVS/Root
-./boost/typeof/CVS/Root
-./boost/typeof/std/CVS/Root
-./boost/typeof/msvc/CVS/Root
-./boost/numeric/CVS/Root
-./boost/numeric/ublas/CVS/Root
-./boost/numeric/ublas/detail/CVS/Root
-./boost/numeric/conversion/CVS/Root
-./boost/numeric/conversion/detail/CVS/Root
-./boost/numeric/interval/CVS/Root
-./boost/numeric/interval/ext/CVS/Root
-./boost/numeric/interval/compare/CVS/Root
-./boost/numeric/interval/detail/CVS/Root
-./boost/utility/CVS/Root
-./boost/utility/detail/CVS/Root
-./boost/archive/CVS/Root
-./boost/archive/impl/CVS/Root
-./boost/archive/detail/CVS/Root
-./boost/archive/iterators/CVS/Root
-./boost/multi_array/CVS/Root
-./boost/pending/CVS/Root
-./boost/pending/detail/CVS/Root
-./boost/multi_index/CVS/Root
-./boost/multi_index/detail/CVS/Root
-./boost/parameter/CVS/Root
-./boost/parameter/aux_/CVS/Root
-./boost/parameter/aux_/preprocessor/CVS/Root
-./boost/parameter/aux_/python/CVS/Root
-./boost/optional/CVS/Root
-./boost/integer/CVS/Root
-./boost/program_options/CVS/Root
-./boost/program_options/detail/CVS/Root
-./boost/ptr_container/CVS/Root
-./boost/ptr_container/detail/CVS/Root
-./boost/type_traits/CVS/Root
-./boost/type_traits/detail/CVS/Root
-./tools/CVS/Root
-./tools/bcp/CVS/Root
-./tools/jam/CVS/Root
-./tools/jam/doc/CVS/Root
-./tools/jam/src/CVS/Root
-./tools/jam/src/debian/CVS/Root
-./tools/jam/src/modules/CVS/Root
-./tools/jam/test/CVS/Root
-./tools/wave/CVS/Root
-./tools/wave/build/CVS/Root
-./tools/regression/CVS/Root
-./tools/regression/test/CVS/Root
-./tools/regression/build/CVS/Root
-./tools/regression/build/vcide/CVS/Root
-./tools/regression/detail/CVS/Root
-./tools/regression/xsl_reports/CVS/Root
-./tools/regression/xsl_reports/xsl/v2/CVS/Root
-./tools/regression/xsl_reports/xsl/v2/html/CVS/Root
-./tools/regression/xsl_reports/xsl/CVS/Root
-./tools/regression/xsl_reports/xsl/html/CVS/Root
-./tools/regression/xsl_reports/xsl/test/CVS/Root
-./tools/regression/xsl_reports/test/CVS/Root
-./tools/regression/xsl_reports/utils/CVS/Root
-./tools/regression/xsl_reports/runner/CVS/Root
-./tools/release/CVS/Root
-./tools/build/v1/CVS/Root
-./tools/build/v1/test/CVS/Root
-./tools/build/v1/example/CVS/Root
-./tools/build/v1/example/property_rule/CVS/Root
-./tools/build/v1/example/property_rule/inc/CVS/Root
-./tools/build/v1/example/lib_use/CVS/Root
-./tools/build/v1/example/target_test_arg/CVS/Root
-./tools/build/v1/example/sublib_use/CVS/Root
-./tools/build/v1/example/sublib_use/sub/CVS/Root
-./tools/build/v1/example/sublib_use/sublib/CVS/Root
-./tools/build/v1/example/template_use/CVS/Root
-./tools/build/v1/example/template_use/sub/CVS/Root
-./tools/build/v1/example/template_use/include/CVS/Root
-./tools/build/v1/example/stage_source_selection/CVS/Root
-./tools/build/v2/CVS/Root
-./tools/build/v2/doc/CVS/Root
-./tools/build/v2/doc/src/CVS/Root
-./tools/build/v2/test/CVS/Root
-./tools/build/v2/test/railsys/CVS/Root
-./tools/build/v2/test/railsys/libx/CVS/Root
-./tools/build/v2/test/railsys/libx/src/CVS/Root
-./tools/build/v2/test/railsys/libx/include/CVS/Root
-./tools/build/v2/test/railsys/program/CVS/Root
-./tools/build/v2/test/railsys/program/liba/CVS/Root
-./tools/build/v2/test/railsys/program/main/CVS/Root
-./tools/build/v2/test/railsys/program/include/CVS/Root
-./tools/build/v2/test/test2/CVS/Root
-./tools/build/v2/test/testing-primitives/CVS/Root
-./tools/build/v2/test/direct-request-test/CVS/Root
-./tools/build/v2/test/project-test1/CVS/Root
-./tools/build/v2/test/project-test1/dir/CVS/Root
-./tools/build/v2/test/project-test1/dir2/CVS/Root
-./tools/build/v2/test/project-test3/CVS/Root
-./tools/build/v2/test/project-test3/lib/CVS/Root
-./tools/build/v2/test/project-test3/lib2/CVS/Root
-./tools/build/v2/test/project-test3/lib2/helper/CVS/Root
-./tools/build/v2/test/project-test3/lib3/CVS/Root
-./tools/build/v2/test/project-test4/CVS/Root
-./tools/build/v2/test/project-test4/lib/CVS/Root
-./tools/build/v2/test/project-test4/lib2/CVS/Root
-./tools/build/v2/test/startup/CVS/Root
-./tools/build/v2/test/startup/bootstrap-env/CVS/Root
-./tools/build/v2/test/startup/bootstrap-implicit/CVS/Root
-./tools/build/v2/test/startup/boost-root/CVS/Root
-./tools/build/v2/test/startup/boost-root/build/CVS/Root
-./tools/build/v2/test/startup/bootstrap-explicit/CVS/Root
-./tools/build/v2/test/startup/no-bootstrap1/CVS/Root
-./tools/build/v2/test/startup/no-bootstrap1/subdir/CVS/Root
-./tools/build/v2/test/startup/no-bootstrap2/CVS/Root
-./tools/build/v2/test/startup/no-bootstrap3/CVS/Root
-./tools/build/v2/test/subdir1/CVS/Root
-./tools/build/v2/test/dependency-test/CVS/Root
-./tools/build/v2/test/dependency-test/src1/CVS/Root
-./tools/build/v2/test/dependency-test/src2/CVS/Root
-./tools/build/v2/test/v1-testing/CVS/Root
-./tools/build/v2/test/prebuilt/CVS/Root
-./tools/build/v2/test/prebuilt/ext/CVS/Root
-./tools/build/v2/test/prebuilt/ext/release/CVS/Root
-./tools/build/v2/test/prebuilt/ext/debug/CVS/Root
-./tools/build/v2/test/v1_testing/CVS/Root
-./tools/build/v2/test/unused/CVS/Root
-./tools/build/v2/test/module-actions/CVS/Root
-./tools/build/v2/test/generators-test/CVS/Root
-./tools/build/v2/test/generators-test/lib/CVS/Root
-./tools/build/v2/test/boostbook/CVS/Root
-./tools/build/v2/util/CVS/Root
-./tools/build/v2/build/CVS/Root
-./tools/build/v2/notes/CVS/Root
-./tools/build/v2/tools/CVS/Root
-./tools/build/v2/tools/types/CVS/Root
-./tools/build/v2/example/qt/CVS/Root
-./tools/build/v2/example/qt/qt3/CVS/Root
-./tools/build/v2/example/qt/qt3/uic/CVS/Root
-./tools/build/v2/example/qt/qt3/hello/CVS/Root
-./tools/build/v2/example/qt/qt3/moccable-cpp/CVS/Root
-./tools/build/v2/example/qt/qt4/CVS/Root
-./tools/build/v2/example/qt/qt4/uic/CVS/Root
-./tools/build/v2/example/qt/qt4/moccable-cpp/CVS/Root
-./tools/build/v2/example/CVS/Root
-./tools/build/v2/example/make/CVS/Root
-./tools/build/v2/example/customization/CVS/Root
-./tools/build/v2/example/hello/CVS/Root
-./tools/build/v2/example/libraries/CVS/Root
-./tools/build/v2/example/libraries/app/CVS/Root
-./tools/build/v2/example/libraries/util/CVS/Root
-./tools/build/v2/example/libraries/util/foo/CVS/Root
-./tools/build/v2/example/libraries/util/foo/include/CVS/Root
-./tools/build/v2/example/gettext/CVS/Root
-./tools/build/v2/example/variant/CVS/Root
-./tools/build/v2/example/variant/libs/CVS/Root
-./tools/build/v2/example/versioned/CVS/Root
-./tools/build/v2/debian/CVS/Root
-./tools/build/v2/kernel/CVS/Root
-./tools/build/v2/options/CVS/Root
-./tools/build/CVS/Root
-./tools/quickbook/CVS/Root
-./tools/quickbook/doc/CVS/Root
-./tools/quickbook/doc/html/CVS/Root
-./tools/quickbook/doc/html/quickbook/CVS/Root
-./tools/quickbook/doc/html/quickbook/syntax/CVS/Root
-./tools/quickbook/doc/html/images/CVS/Root
-./tools/quickbook/test/CVS/Root
-./tools/quickbook/test/src/CVS/Root
-./tools/quickbook/detail/CVS/Root
-./tools/inspect/CVS/Root
-./tools/inspect/build/CVS/Root
-./tools/boostbook/CVS/Root
-./tools/boostbook/doc/CVS/Root
-./tools/boostbook/dtd/CVS/Root
-./tools/boostbook/xsl/CVS/Root
-./tools/boostbook/xsl/dtd/CVS/Root
-./tools/boostbook/xsl/doxygen/CVS/Root
-./tools/boostbook/xsl/testing/CVS/Root
-./tools/boostbook/xsl/caramel/CVS/Root
-./people/CVS/Root
-./status/CVS/Root




More information about the pkg-boost-commits mailing list