Package: squidview
Version: 0.69-2
Severity: important
Tags: patch

Your package fails to build with G++ 4.1.  I'm filing this bug as
important for now, but when 4.1 will be the default compiler in
unstable (probably in a few weeks) I'll upgrade this to serious.

A patch is below.


> Automatic build of squidview_0.69-2 on bigsur by sbuild/mips 1.89
...
> make[1]: Entering directory `/build/tbm/squidview-0.69'
> g++ -DHAVE_CONFIG_H -I. -I. -I.     -Wall -g -DDEBIANIZED -O2 -c squidview.cpp
> squidview.h:202: error: extra qualification 'rUserTotal::' on member 
> 'operator='
> squidview.h:211: error: extra qualification 'rDomainTotal::' on member 
> 'operator='
> make[1]: *** [squidview.o] Error 1


--- ./squidview.h~      2006-03-12 15:36:25.000000000 +0000
+++ ./squidview.h       2006-03-12 15:36:32.000000000 +0000
@@ -199,7 +199,7 @@
   string sLoginName;
   string sFullName;
 
-  rUserTotal rUserTotal::operator= (const rUserTotal&);
+  rUserTotal operator= (const rUserTotal&);
 };
 
 struct rDomainTotal
@@ -208,7 +208,7 @@
   int iHits;
   string sDomain;
 
-  rDomainTotal rDomainTotal::operator= (const rDomainTotal&);
+  rDomainTotal operator= (const rDomainTotal&);
 };
 
 

-- 
Martin Michlmayr
http://www.cyrius.com/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to