Fix for compiling with g++ 4.1.1…

Dear all

I am new here but hope to catch up on the exciting stuff being done here ;-)
Thanks to  Peter, I  was able to  build  ( old  qmake  was screwing up the makefile … )

One other wrinkle was this line …

class Gnutella::Workaround {

I rewrote it as

namespace Gnutella
{
/* Atul — commented the following line */
// class Gnutella::Workaround {
…..

}

and that makes the build go through fine….

Or should I send these things as a patch?

— cheers atul

Would you like to post a relpy?


This post starts a thread.
Follow-ups:
Re: Fix for compiling with g++ 4.1.1…
... atul wrote: I rewrote it as namespace Gnutella { /* Atul -- commented the following line */ // class Gnutella::Workaround { class Workaround { }; } I mean use the undecorated class name...