[Haiku-commits] r31129 - in haiku/trunk/src/apps/debugger: . debugger_interface
phoudoin at mail.berlios.de
phoudoin at mail.berlios.de
Sat Jun 20 10:52:55 CEST 2009
Author: phoudoin
Date: 2009-06-20 10:52:51 +0200 (Sat, 20 Jun 2009)
New Revision: 31129
ViewCVS: http://svn.berlios.de/viewcvs/haiku?rev=31129&view=rev
Modified:
haiku/trunk/src/apps/debugger/Jamfile
haiku/trunk/src/apps/debugger/debugger_interface/DebuggerInterface.h
Log:
DebuggerInterface destructor wasn't virtual, raising a -Werror warning.
Fixed libdebug.so link.
Modified: haiku/trunk/src/apps/debugger/Jamfile
===================================================================
--- haiku/trunk/src/apps/debugger/Jamfile 2009-06-20 08:44:54 UTC (rev 31128)
+++ haiku/trunk/src/apps/debugger/Jamfile 2009-06-20 08:52:51 UTC (rev 31129)
@@ -70,7 +70,7 @@
libshared.a
$(TARGET_LIBSTDC++)
- be debug
+ be libdebug.so
: Debugger.rdef
;
Modified: haiku/trunk/src/apps/debugger/debugger_interface/DebuggerInterface.h
===================================================================
--- haiku/trunk/src/apps/debugger/debugger_interface/DebuggerInterface.h 2009-06-20 08:44:54 UTC (rev 31128)
+++ haiku/trunk/src/apps/debugger/debugger_interface/DebuggerInterface.h 2009-06-20 08:52:51 UTC (rev 31129)
@@ -23,7 +23,7 @@
class DebuggerInterface {
public:
DebuggerInterface(team_id teamID);
- ~DebuggerInterface();
+ virtual ~DebuggerInterface();
status_t Init();
void Close();
More information about the Haiku-commits
mailing list