From d68a0c6f4f4500cb7daf4f38515d2c3f0844c24a Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Tue, 30 Jun 2009 14:33:07 +0000 Subject: [PATCH] Added DIECompileUnitBase::CompilationDir() getter. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31330 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/debugger/dwarf/DebugInfoEntries.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/apps/debugger/dwarf/DebugInfoEntries.h b/src/apps/debugger/dwarf/DebugInfoEntries.h index 73af051cae..1cd4c2908f 100644 --- a/src/apps/debugger/dwarf/DebugInfoEntries.h +++ b/src/apps/debugger/dwarf/DebugInfoEntries.h @@ -143,6 +143,9 @@ public: virtual const char* Name() const; + const char* CompilationDir() const + { return fCompilationDir; } + const DebugInfoEntryList& Types() const { return fTypes; } const DebugInfoEntryList& OtherChildren() const { return fOtherChildren; }