[Lldb-commits] [lldb] r154467 - /lldb/branches/lldb-platform-work/source/Plugins/Platform/MacOSX/PlatformMacOSX.h

Enrico Granata egranata at apple.com
Tue Apr 10 18:04:04 PDT 2012


Author: enrico
Date: Tue Apr 10 20:04:04 2012
New Revision: 154467

URL: http://llvm.org/viewvc/llvm-project?rev=154467&view=rev
Log:
Adding erroneously deleted prototypes for GetFile() in PlatformMacOSX.h - It probably makes sense on the longer term to have this stuff sit in the POSIX platform layer, but not at this moment

Modified:
    lldb/branches/lldb-platform-work/source/Plugins/Platform/MacOSX/PlatformMacOSX.h

Modified: lldb/branches/lldb-platform-work/source/Plugins/Platform/MacOSX/PlatformMacOSX.h
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/lldb-platform-work/source/Plugins/Platform/MacOSX/PlatformMacOSX.h?rev=154467&r1=154466&r2=154467&view=diff
==============================================================================
--- lldb/branches/lldb-platform-work/source/Plugins/Platform/MacOSX/PlatformMacOSX.h (original)
+++ lldb/branches/lldb-platform-work/source/Plugins/Platform/MacOSX/PlatformMacOSX.h Tue Apr 10 20:04:04 2012
@@ -76,11 +76,15 @@
         return GetDescriptionStatic (IsHost());
     }
 
-    virtual lldb_private::Error
+    lldb_private::Error
     GetFile (const lldb_private::FileSpec &platform_file, 
              const lldb_private::UUID *uuid_ptr,
              lldb_private::FileSpec &local_file);
     
+    lldb_private::Error
+    GetFile (const lldb_private::FileSpec& source,
+             const lldb_private::FileSpec& destination);
+    
     virtual bool
     GetSupportedArchitectureAtIndex (uint32_t idx, 
                                      lldb_private::ArchSpec &arch);





More information about the lldb-commits mailing list