From c30a73adf671532c21b573a9009f20ca15e6180d Mon Sep 17 00:00:00 2001 From: Enrico Granata Date: Thu, 6 Sep 2012 22:02:28 +0000 Subject: Fixing a constness issue in an otherwise trivial patch llvm-svn: 163352 --- lldb/source/API/SBDebugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/API/SBDebugger.cpp') diff --git a/lldb/source/API/SBDebugger.cpp b/lldb/source/API/SBDebugger.cpp index 3549be3b0c2..194e48c314c 100644 --- a/lldb/source/API/SBDebugger.cpp +++ b/lldb/source/API/SBDebugger.cpp @@ -794,7 +794,7 @@ SBDebugger::SetSelectedTarget (SBTarget &sb_target) } void -SBDebugger::DispatchInput (const void* baton, const void *data, size_t data_len) +SBDebugger::DispatchInput (void* baton, const void *data, size_t data_len) { DispatchInput (data,data_len); } -- cgit v1.2.3