diff --git a/base_from_member.html b/base_from_member.html index 55e3f60..4dd70f4 100644 --- a/base_from_member.html +++ b/base_from_member.html @@ -334,7 +334,7 @@ with the exact pointer type used in switcher's constructor.

Contributors

-
Ed Brey +
Ed Brey
Suggested some interface changes.
R. Samuel Klatchko (switcher's constructor.

Invented the idiom of how to use a class member for initializing a base class. -
Dietmar Kuehl +
Dietmar Kuehl
Popularized the base-from-member idiom in his IOStream example classes. @@ -353,7 +353,7 @@ with the exact pointer type used in switcher's constructor.

can be controlled and automated with macros. The implementation uses the Preprocessor library. -
Daryle Walker +
Daryle Walker
Started the library. Contributed the test file base_from_member_test.cpp.
diff --git a/generator_iterator.htm b/generator_iterator.htm index 74d4732..c81d3d1 100644 --- a/generator_iterator.htm +++ b/generator_iterator.htm @@ -153,7 +153,7 @@ int main() 05 December, 2006

Copyright © 2001 Jens Maurer

+ "../../people/jens_maurer.htm">Jens Maurer

Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or diff --git a/in_place_factories.html b/in_place_factories.html index 67cef40..b36387d 100644 --- a/in_place_factories.html +++ b/in_place_factories.html @@ -291,6 +291,6 @@ www.boost.org/LICENSE_1_0.txt)

Developed by Fernando Cacciola, the latest version of this file can be found at www.boost.org, and the boost -discussion lists

+discussion lists

\ No newline at end of file diff --git a/operators.htm b/operators.htm index f504f23..fca90e5 100644 --- a/operators.htm +++ b/operators.htm @@ -1577,8 +1577,8 @@ T operator+( T lhs, const T& rhs )

The operators_test.cpp program demonstrates the use of the arithmetic operator templates, and can also be used to verify correct operation. Check the regression - test results for the test results with selected platforms.

+ "../../status/compiler_status.html">compiler status report for the + test results with selected platforms.

Dereference Operators and Iterator Helpers

@@ -2022,20 +2022,20 @@ public: -

Check the compiler status +

Check the compiler status report for the test results with selected platforms.


Contributors

-
Dave Abrahams
+
Dave Abrahams
Started the library and contributed the arithmetic operators in boost/operators.hpp.
-
Jeremy Siek
+
Jeremy Siek
Contributed the dereference operators and iterator helpers in iterators_test.cpp.
-
Aleksey +
Aleksey Gurtovoy
Contributed the code to support base class chaining while remaining backward-compatible with old versions of the library.
-
Beman Dawes
+
Beman Dawes
Contributed operators_test.cpp.
-
Daryle Walker
+
Daryle Walker
Contributed classes for the shift operators, equivalence, partial ordering, and arithmetic conversions. Added the grouped operator diff --git a/utility.htm b/utility.htm index 294a57c..937a8a3 100644 --- a/utility.htm +++ b/utility.htm @@ -68,7 +68,7 @@ const std::list<T>::iterator next = boost::next(prev, 2);

The distance from the given iterator should be supplied as an absolute value. For example, the iterator four iterators prior to the given iterator p may be obtained by prior(p, 4).

-

Contributed by Dave Abrahams. Two-argument versions by Daniel Walker.

+

Contributed by Dave Abrahams. Two-argument versions by Daniel Walker.

Class noncopyable

Class noncopyable is a base class.  Derive your own class from noncopyable when you want to prohibit copy construction @@ -89,7 +89,7 @@ const std::list<T>::iterator next = boost::next(prev, 2); to verify class noncopyable works as expected. It has have been run successfully under GCC 2.95, Metrowerks CodeWarrior 5.0, and Microsoft Visual C++ 6.0 sp 3.

-

Contributed by Dave Abrahams.

+

Contributed by Dave Abrahams.

Example

// inside one of your own headers ...