Re: [patch] more bformat

2003-06-30 Thread Andre Poenitz
On Mon, Jun 30, 2003 at 04:26:12PM +0200, Lars Gullik Bjønnes wrote: > | +namespace { > | + > | + string tostr(XColor const & col) > | + { > | + return bformat("(%1$s,%2$s,%3$s)", > | + ::tostr(col.red), ::tostr(col.green), > | ::tostr(col.blue)); > > why is the ::

Re: [patch] more bformat

2003-06-30 Thread Lars Gullik Bjønnes
Andre Poenitz <[EMAIL PROTECTED]> writes: | Some more #ifdef BOOST_FORMAT -> bformat consolidation. | | Andre' | | -- | Those who desire to give up Freedom in order to gain Security, will not have, | nor do they deserve, either one. (T. Jefferson or B. Franklin or both...) | | Index: Color

[patch] more bformat

2003-06-30 Thread Andre Poenitz
Some more #ifdef BOOST_FORMAT -> bformat consolidation. Andre' -- Those who desire to give up Freedom in order to gain Security, will not have, nor do they deserve, either one. (T. Jefferson or B. Franklin or both...) Index: ColorHandler.C ===