diff --git a/base_from_member.html b/base_from_member.html index 4dd70f4..21ee6d2 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 c81d3d1..6070522 100644 --- a/generator_iterator.htm +++ b/generator_iterator.htm @@ -153,7 +153,7 @@ int main() 05 December, 2006

Copyright © 2001 Jens Maurer

+ "http://www.boost.org/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/operators.htm b/operators.htm index fca90e5..13d0d0b 100644 --- a/operators.htm +++ b/operators.htm @@ -2029,13 +2029,13 @@ public:

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 937a8a3..9514188 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 ...