diff options
author | Enrico Granata <egranata@apple.com> | 2012-09-06 22:02:28 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2012-09-06 22:02:28 +0000 |
commit | c30a73adf671532c21b573a9009f20ca15e6180d (patch) | |
tree | 1bb17116556cfcdb8ee1dc0f4e1a6a789d245cf9 /lldb/source/API/SBDebugger.cpp | |
parent | 6b09d42335381c47862cb65d6cdd7d48b8582b50 (diff) | |
download | bcm5719-llvm-c30a73adf671532c21b573a9009f20ca15e6180d.tar.gz bcm5719-llvm-c30a73adf671532c21b573a9009f20ca15e6180d.zip |
Fixing a constness issue in an otherwise trivial patch
llvm-svn: 163352
Diffstat (limited to 'lldb/source/API/SBDebugger.cpp')
-rw-r--r-- | lldb/source/API/SBDebugger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |