From 0620462efb28ad0581ec831b17138dc13047928f Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 5 Oct 2004 14:35:31 +0000 Subject: [PATCH] Fixes from Christoph Ludwig [SVN r25571] --- doc/v2/operators.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/doc/v2/operators.html b/doc/v2/operators.html index d7d1478a..968a4377 100755 --- a/doc/v2/operators.html +++ b/doc/v2/operators.html @@ -832,15 +832,15 @@ struct number operator long() const { return x; } number& operator+=(number const& rhs) - { x += rhs } - number& operator-=(number const& rhs); - { x -= rhs } + { x += rhs; } + number& operator-=(number const& rhs) + { x -= rhs; } number& operator*=(number const& rhs) - { x *= rhs } - number& operator/=(number const& rhs); - { x /= rhs } - number& operator%=(number const& rhs); - { x %= rhs } + { x *= rhs; } + number& operator/=(number const& rhs) + { x /= rhs; } + number& operator%=(number const& rhs) + { x %= rhs; } long x; }; @@ -886,7 +886,7 @@ BOOST_PYTHON_MODULE(demo)

Revised - 3 October, 2003 + 5 October, 2004