DebuggerInterface destructor wasn't virtual, raising a -Werror warning.

Fixed libdebug.so link.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31129 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Philippe Houdoin
2009-06-20 08:52:51 +00:00
parent da03e5cb10
commit ec1b789c2e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ Application Debugger :
libshared.a libshared.a
$(TARGET_LIBSTDC++) $(TARGET_LIBSTDC++)
be debug be libdebug.so
: Debugger.rdef : Debugger.rdef
; ;
@@ -23,7 +23,7 @@ class ThreadInfo;
class DebuggerInterface { class DebuggerInterface {
public: public:
DebuggerInterface(team_id teamID); DebuggerInterface(team_id teamID);
~DebuggerInterface(); virtual ~DebuggerInterface();
status_t Init(); status_t Init();
void Close(); void Close();