Fix for 218140 for SBTarget.i, the added functions were in the wrong class definition

llvm-svn: 218147
This commit is contained in:
Carlo Kok 2014-09-19 20:12:24 +00:00
parent 615eb7e609
commit b77aba7708
1 changed files with 11 additions and 10 deletions

View File

@ -112,16 +112,6 @@ public:
void
SetDetachOnError(bool enable);
lldb::SBValueList
FindGlobalVariables(const char *name,
uint32_t max_matches,
MatchType matchtype);
lldb::SBSymbolContextList
FindGlobalFunctions(const char *name,
uint32_t max_matches,
MatchType matchtype);
};
class SBAttachInfo
@ -672,6 +662,17 @@ public:
lldb::SBValue
FindFirstGlobalVariable (const char* name);
lldb::SBValueList
FindGlobalVariables(const char *name,
uint32_t max_matches,
MatchType matchtype);
lldb::SBSymbolContextList
FindGlobalFunctions(const char *name,
uint32_t max_matches,
MatchType matchtype);
void
Clear ();