diff options
| author | Zachary Turner <zturner@google.com> | 2016-11-17 21:15:14 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2016-11-17 21:15:14 +0000 |
| commit | 3165945a419e4882b94f73f005f9ea4d3d10a985 (patch) | |
| tree | f8ecba9330545a9f0fa01053d2d237c46d85319f /lldb/source/Core | |
| parent | ca9d83475e94b3b1649f6f76b4cd6c345ea0404b (diff) | |
| download | bcm5719-llvm-3165945a419e4882b94f73f005f9ea4d3d10a985.tar.gz bcm5719-llvm-3165945a419e4882b94f73f005f9ea4d3d10a985.zip | |
Convert Platform, Process, and Connection functions to StringRef.
All tests pass on Linux and Windows.
llvm-svn: 287259
Diffstat (limited to 'lldb/source/Core')
| -rw-r--r-- | lldb/source/Core/ConnectionSharedMemory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/ConnectionSharedMemory.cpp b/lldb/source/Core/ConnectionSharedMemory.cpp index 74487b017e4..05dec4856c2 100644 --- a/lldb/source/Core/ConnectionSharedMemory.cpp +++ b/lldb/source/Core/ConnectionSharedMemory.cpp @@ -44,7 +44,7 @@ ConnectionSharedMemory::~ConnectionSharedMemory() { Disconnect(nullptr); } bool ConnectionSharedMemory::IsConnected() const { return m_fd >= 0; } -ConnectionStatus ConnectionSharedMemory::Connect(const char *s, +ConnectionStatus ConnectionSharedMemory::Connect(llvm::StringRef s, Error *error_ptr) { // if (s && s[0]) // { |

