Package: ucimf-openvanilla
Severity: minor
Tags: patch
User: [email protected]
Usertags: clang-ftbfs
Hello,
Using the rebuild infrastructure, your package fails to build with clang
(instead of gcc).
We detected this kinf of error:
http://clang.debian.net/status.php?version=3.4.2&key=DEFAULT_CONSTRUCTOR
Full build log is available here:
http://clang.debian.net/logs/2014-06-16/ucimf-openvanilla_2.10.11-2_unstable_clang.log
Thanks,
Alexander
-- System Information:
Debian Release: jessie/sid
APT prefers unstable
APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
--- ucimf-openvanilla-2.10.11/src/openvanilla.cpp 2010-07-13 10:45:33.000000000 +0400
+++ ucimf-openvanilla-2.10.11-my/src/openvanilla.cpp 2014-06-30 21:59:51.158074482 +0400
@@ -29,7 +29,7 @@
* implementation of OVImfKeyCode
*/
-OVImfKeyCode::OVImfKeyCode (int p=0) { chr=p; shift=capslock=ctrl=alt=0; }
+OVImfKeyCode::OVImfKeyCode (int p) { chr=p; shift=capslock=ctrl=alt=0; }
int OVImfKeyCode::code() { return chr; }
bool OVImfKeyCode::isShift() { return shift!=0; }
bool OVImfKeyCode::isCapslock() { return capslock!=0; }
--- ucimf-openvanilla-2.10.11/src/openvanilla.h 2010-07-13 10:45:33.000000000 +0400
+++ ucimf-openvanilla-2.10.11-my/src/openvanilla.h 2014-06-30 22:00:50.385005293 +0400
@@ -38,7 +38,7 @@
class OVImfKeyCode : public OVKeyCode {
public:
- OVImfKeyCode (int p);
+ OVImfKeyCode (int p = 0);
virtual int code();
virtual bool isShift();
virtual bool isCapslock();