------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=133180 Summary: compilation error in SVN revision 578441 at branch kdevelop/3.4 on x86_64 system Product: kdevelop Version: unspecified Platform: unspecified OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: general AssignedTo: kdevelop-bugs kdevelop org ReportedBy: mail chrschn de Version: 3.3.92 (using KDE 3.5.4, compiled sources) Compiler: gcc version 3.4.4 OS: Linux (x86_64) release 2.6.16.22 In file languages/cpp/typedesc.h line 184 and 189, two functions are declared as: unit TypeDesc::hashKey() const ... unit TypeDesc::hashKey2() const but the definition in file languages/cpp/typedesc.cpp at line 362 and 370 is: size_t TypeDesc::hashKey() const ... size_t TypeDesc::hashKey2() const This causes a compilition error on my x86_64-system, because sizeof(size_t) is 8, but sizeof(uint) is 4.