summaryrefslogtreecommitdiff
path: root/source/Core/StreamAsynchronousIO.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Core/StreamAsynchronousIO.cpp')
-rw-r--r--source/Core/StreamAsynchronousIO.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Core/StreamAsynchronousIO.cpp b/source/Core/StreamAsynchronousIO.cpp
index aae8636bff098..b8938bd3fc4e3 100644
--- a/source/Core/StreamAsynchronousIO.cpp
+++ b/source/Core/StreamAsynchronousIO.cpp
@@ -10,7 +10,7 @@
#include "lldb/Core/StreamAsynchronousIO.h"
#include "lldb/Core/Debugger.h"
-#include "lldb/lldb-enumerations.h" // for ByteOrder::eByteOrderBig
+#include "lldb/lldb-enumerations.h"
using namespace lldb;
using namespace lldb_private;
@@ -31,7 +31,7 @@ void StreamAsynchronousIO::Flush() {
}
}
-size_t StreamAsynchronousIO::Write(const void *s, size_t length) {
+size_t StreamAsynchronousIO::WriteImpl(const void *s, size_t length) {
m_data.append((const char *)s, length);
return length;
}