[Lldb-commits] [lldb] r218147 - Fix for 218140 for SBTarget.i, the added functions were in the wrong class definition

Carlo Kok ck at remobjects.com
Fri Sep 19 13:12:25 PDT 2014


Author: carlokok
Date: Fri Sep 19 15:12:24 2014
New Revision: 218147

URL: http://llvm.org/viewvc/llvm-project?rev=218147&view=rev
Log:
Fix for 218140 for SBTarget.i, the added functions were in the wrong class definition

Modified:
    lldb/trunk/scripts/Python/interface/SBTarget.i

Modified: lldb/trunk/scripts/Python/interface/SBTarget.i
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/interface/SBTarget.i?rev=218147&r1=218146&r2=218147&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/interface/SBTarget.i (original)
+++ lldb/trunk/scripts/Python/interface/SBTarget.i Fri Sep 19 15:12:24 2014
@@ -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 ();
 





More information about the lldb-commits mailing list