From f7c17df050161fb6fe5af9e08cdcb32c9e6a51eb Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Tue, 16 Nov 2021 17:07:13 +0300 Subject: [PATCH] Adjusted code formatting. --- doc/operators.qbk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/operators.qbk b/doc/operators.qbk index 0d8423e..db888e0 100644 --- a/doc/operators.qbk +++ b/doc/operators.qbk @@ -40,7 +40,7 @@ If, for example, you declare a class like this: ``` class MyInt -: boost::__operators__ + : boost::__operators__ { bool operator<(const MyInt& x) const; bool operator==(const MyInt& x) const; @@ -104,10 +104,10 @@ template. ``` template class point // note: private inheritance is OK here! -: boost::addable< point // point + point -, boost::subtractable< point // point - point -, boost::dividable2< point, T // point / T -, boost::multipliable2< point, T // point * T, T * point + : boost::addable< point // point + point + , boost::subtractable< point // point - point + , boost::dividable2< point, T // point / T + , boost::multipliable2< point, T // point * T, T * point > > > > { public: