Control: tags -1 patch
Dear Maintainer,
In Ubuntu, the attached patch was applied to achieve the following:
* debian/patches/bool-conversion.patch: Grab patch from upstream Git to fix
FTBFS due to bool conversion.
Thanks for considering the patch.
Logan Rosen
diff -Nru nemiver-0.9.6/debian/patches/bool-conversion.patch nemiver-0.9.6/debian/patches/bool-conversion.patch
--- nemiver-0.9.6/debian/patches/bool-conversion.patch 1969-12-31 19:00:00.000000000 -0500
+++ nemiver-0.9.6/debian/patches/bool-conversion.patch 2016-07-25 21:29:11.000000000 -0400
@@ -0,0 +1,26 @@
+From e0e42221ceb77d88be64fac1c09792dc5c9e2f43 Mon Sep 17 00:00:00 2001
+From: Ben Iofel <[email protected]>
+Date: Thu, 17 Mar 2016 18:28:02 -0400
+Subject: Fix compiliation warnings & errors
+
+---
+ src/dbgengine/nmv-dbg-common.h | 2 +-
+ src/dbgengine/nmv-i-var-list-walker.h | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/dbgengine/nmv-dbg-common.h b/src/dbgengine/nmv-dbg-common.h
+index ad3cc00..0edac7c 100644
+--- a/src/dbgengine/nmv-dbg-common.h
++++ b/src/dbgengine/nmv-dbg-common.h
+@@ -171,7 +171,7 @@ public:
+
+ bool has_slot () const
+ {
+- return m_slot;
++ return static_cast<bool> (m_slot);
+ }
+
+ template<class T>
+--
+cgit v0.12
+
diff -Nru nemiver-0.9.6/debian/patches/series nemiver-0.9.6/debian/patches/series
--- nemiver-0.9.6/debian/patches/series 2015-10-03 15:16:43.000000000 -0400
+++ nemiver-0.9.6/debian/patches/series 2016-07-25 21:29:16.000000000 -0400
@@ -1,2 +1,3 @@
# List of currently applied Debian patches
missing-files.patch
+bool-conversion.patch