Bug#302808: kdelibs: uses invalid C++

2005-04-03 Thread Riku Voipio
On Sat, Apr 02, 2005 at 09:05:57PM -0800, Karl Chen wrote: > kdelibs source contains code of this form: > > namespace NS1 { > struct S { > int foo(); > }; > } > > using namespace NS1; > > namespace NS2 { > int S::foo() { return 0

Bug#302808: kdelibs: uses invalid C++

2005-04-02 Thread Karl Chen
Package: kdelibs Severity: minor kdelibs source contains code of this form: namespace NS1 { struct S { int foo(); }; } using namespace NS1; namespace NS2 { int S::foo() { return 0; } } (Specifically, KNetwork::internal.)