26 lines
700 B
Diff
26 lines
700 B
Diff
From e0e42221ceb77d88be64fac1c09792dc5c9e2f43 Mon Sep 17 00:00:00 2001
|
|
From: Ben Iofel <iofelben@gmail.com>
|
|
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
|
|
--- ./src/dbgengine/nmv-dbg-common.h
|
|
+++ ./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
|
|
|