summaryrefslogtreecommitdiff
path: root/include/lldb/Core/StreamAsynchronousIO.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Core/StreamAsynchronousIO.h')
-rw-r--r--include/lldb/Core/StreamAsynchronousIO.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/lldb/Core/StreamAsynchronousIO.h b/include/lldb/Core/StreamAsynchronousIO.h
index 29b109757da7..89667be05878 100644
--- a/include/lldb/Core/StreamAsynchronousIO.h
+++ b/include/lldb/Core/StreamAsynchronousIO.h
@@ -14,7 +14,7 @@
#include <string>
-#include <stddef.h> // for size_t
+#include <stddef.h>
namespace lldb_private {
class Debugger;
@@ -30,7 +30,8 @@ public:
void Flush() override;
- size_t Write(const void *src, size_t src_len) override;
+protected:
+ size_t WriteImpl(const void *src, size_t src_len) override;
private:
Debugger &m_debugger;