Bug#103980: g++-3.0: copies constructors

2001-07-16 Thread Laurent Bonnaud
Jaakko == Jaakko Niemi [EMAIL PROTECTED] writes: Jaakko Jaakko The compile time is not a problem here, but failure building is. Jaakko Jaakko You move aiosout (const aiosout o) ... under public:, which Jaakko effectively hides the problem. Please take look at: Jaakko Jaakko

Bug#103980: g++-3.0: copies constructors

2001-07-14 Thread Daniel Jacobowitz
On Fri, Jul 13, 2001 at 10:05:29AM +0200, Laurent Bonnaud wrote: Hi, you write that apparently, g++ 3.0 tries a longer conversion chain than 2.95. Indeed, the compiler message let us think so. But to verify this, I added traces into your testcase. The result is that both g++ versions

Bug#103980: g++-3.0: copies constructors

2001-07-08 Thread Jaakko Niemi
Package: g++-3.0 Version: N/A Severity: normal SFS fails to compile with gcc 3.0, and it was tracked down to this example code that reproduces the error: - class aios { friend class aiosout; public: aios (); ~aios (); }; class aiosout { aiosout (const aiosout o);