[Lldb-commits] [lldb] r218975 - Remove compiler warnings.

Matthew Gardiner mg11 at csr.com
Fri Oct 3 03:57:57 PDT 2014


Author: mg11
Date: Fri Oct  3 05:57:56 2014
New Revision: 218975

URL: http://llvm.org/viewvc/llvm-project?rev=218975&view=rev
Log:
Remove compiler warnings.

Unused parameter warnings emanated for #inclusion of SBDebugger.h. This change fixes them.

Modified:
    lldb/trunk/include/lldb/API/SBCommandInterpreter.h

Modified: lldb/trunk/include/lldb/API/SBCommandInterpreter.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBCommandInterpreter.h?rev=218975&r1=218974&r2=218975&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBCommandInterpreter.h (original)
+++ lldb/trunk/include/lldb/API/SBCommandInterpreter.h Fri Oct  3 05:57:56 2014
@@ -175,9 +175,9 @@ class SBCommandPluginInterface
 {
 public:
     virtual bool
-    DoExecute (lldb::SBDebugger debugger,
-               char** command,
-               lldb::SBCommandReturnObject &result)
+    DoExecute (lldb::SBDebugger /*debugger*/,
+               char** /*command*/,
+               lldb::SBCommandReturnObject & /*result*/)
     {
         return false;
     }





More information about the lldb-commits mailing list