Package: polygraph
Severity: minor
Tags: patch
User: pkg-llvm-t...@lists.alioth.debian.org
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/polygraph_4.3.2-1.1_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
--- polygraph-4.3.2/src/pgl/PglIntSym.cc	2011-04-05 02:07:36.000000000 +0400
+++ polygraph-4.3.2-my/src/pgl/PglIntSym.cc	2014-06-30 02:22:31.988604030 +0400
@@ -24,7 +24,7 @@
 String IntSym::TheType = "int";
 
 
-IntSym::IntSym(int aVal = -1): ExpressionSym(TheType), theVal(aVal) {
+IntSym::IntSym(int aVal): ExpressionSym(TheType), theVal(aVal) {
 }
 
 bool IntSym::isA(const String &type) const {
--- polygraph-4.3.2/src/pgl/PglIntSym.h	2011-04-05 02:07:36.000000000 +0400
+++ polygraph-4.3.2-my/src/pgl/PglIntSym.h	2014-06-30 02:22:19.668814867 +0400
@@ -14,7 +14,7 @@
 		static IntSym *Fit(const Oper &op, double d, const TokenLoc &);
 
 	public:
-		IntSym(int aVal);
+		IntSym(int aVal = -1);
 
 		int val() const { return theVal; }
 		void val(int v) { theVal = v; }

Reply via email to