diff options
author | Steve Pucci <spucci@google.com> | 2014-01-17 18:18:31 +0000 |
---|---|---|
committer | Steve Pucci <spucci@google.com> | 2014-01-17 18:18:31 +0000 |
commit | fc99572540f6012d0f5147dddcb4a7fdefb7af0e (patch) | |
tree | c49a05c3c1a95dd82145c1e3cda45e3817e6f029 /lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h | |
parent | 21afbe034e7d438ecd2b07592cbab481335af668 (diff) | |
download | bcm5719-llvm-fc99572540f6012d0f5147dddcb4a7fdefb7af0e.tar.gz bcm5719-llvm-fc99572540f6012d0f5147dddcb4a7fdefb7af0e.zip |
Rename Platform::GetFile (3-arg version) to GetFileWithUUID
This rename was suggested by gclayton as a way to silence gcc
warnings; the warning is emitted when there is an overloaded function
in a base class (Platform) for which a derived class redefines one of
the overloads but not the other (because doing so hides the other
overload from users of the derived class). By giving the two methods
different names, the situation is avoided.
llvm-svn: 199504
Diffstat (limited to 'lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h')
-rw-r--r-- | lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h b/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h index 808fb5ed61c..91e1e7c7e27 100644 --- a/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h +++ b/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h @@ -73,9 +73,9 @@ public: GetDescription (); virtual lldb_private::Error - GetFile (const lldb_private::FileSpec &platform_file, - const lldb_private::UUID *uuid_ptr, - lldb_private::FileSpec &local_file); + GetFileWithUUID (const lldb_private::FileSpec &platform_file, + const lldb_private::UUID *uuid_ptr, + lldb_private::FileSpec &local_file); virtual bool GetProcessInfo (lldb::pid_t pid, |