[Lldb-commits] [lldb] r221232 - Fix one more [-Werror, -Winconsistent-missing-override] error.
Eric Christopher
echristo at gmail.com
Mon Nov 3 19:14:57 PST 2014
Author: echristo
Date: Mon Nov 3 21:14:57 2014
New Revision: 221232
URL: http://llvm.org/viewvc/llvm-project?rev=221232&view=rev
Log:
Fix one more [-Werror,-Winconsistent-missing-override] error.
Modified:
lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h
Modified: lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h?rev=221232&r1=221231&r2=221232&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h Mon Nov 3 21:14:57 2014
@@ -58,7 +58,7 @@ public:
bool &quit);
virtual bool
- GetThreadSuffixSupported ()
+ GetThreadSuffixSupported () override
{
return true;
}
More information about the lldb-commits
mailing list