[Lldb-commits] [lldb] r353447 - Add missing overrides

Aaron Smith via lldb-commits lldb-commits at lists.llvm.org
Thu Feb 7 10:52:22 PST 2019


Author: asmith
Date: Thu Feb  7 10:52:22 2019
New Revision: 353447

URL: http://llvm.org/viewvc/llvm-project?rev=353447&view=rev
Log:
Add missing overrides

Modified:
    lldb/trunk/include/lldb/Host/windows/PipeWindows.h

Modified: lldb/trunk/include/lldb/Host/windows/PipeWindows.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Host/windows/PipeWindows.h?rev=353447&r1=353446&r2=353447&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Host/windows/PipeWindows.h (original)
+++ lldb/trunk/include/lldb/Host/windows/PipeWindows.h Thu Feb  7 10:52:22 2019
@@ -48,8 +48,8 @@ public:
   bool CanRead() const override;
   bool CanWrite() const override;
 
-  lldb::pipe_t GetReadPipe() const { return lldb::pipe_t(m_read); }
-  lldb::pipe_t GetWritePipe() const { return lldb::pipe_t(m_write); }
+  lldb::pipe_t GetReadPipe() const override { return lldb::pipe_t(m_read); }
+  lldb::pipe_t GetWritePipe() const override { return lldb::pipe_t(m_write); }
 
   int GetReadFileDescriptor() const override;
   int GetWriteFileDescriptor() const override;




More information about the lldb-commits mailing list