diff options
author | Owen Anderson <resistor@mac.com> | 2009-07-01 23:13:44 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-07-01 23:13:44 +0000 |
commit | 92adb18f63b3e007acf7cde59318c595ed9d3d40 (patch) | |
tree | dc0e25b2f2b2706339e64e4f654d2a442ab97018 /include/llvm/Debugger | |
parent | 886d79aeac2c0edcdd13a5e83c0a806630a375fc (diff) | |
download | external_llvm-92adb18f63b3e007acf7cde59318c595ed9d3d40.zip external_llvm-92adb18f63b3e007acf7cde59318c595ed9d3d40.tar.gz external_llvm-92adb18f63b3e007acf7cde59318c595ed9d3d40.tar.bz2 |
Make the use of const with respect to LLVMContext sane. Hopefully this is the last time, for the
moment, that I will need to make far-reaching changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74655 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Debugger')
-rw-r--r-- | include/llvm/Debugger/Debugger.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Debugger/Debugger.h b/include/llvm/Debugger/Debugger.h index d003539..42de356 100644 --- a/include/llvm/Debugger/Debugger.h +++ b/include/llvm/Debugger/Debugger.h @@ -96,7 +96,7 @@ namespace llvm { /// the PATH for the specified program, loading it when found. If the /// specified program cannot be found, an exception is thrown to indicate /// the error. - void loadProgram(const std::string &Path, const LLVMContext& Context); + void loadProgram(const std::string &Path, LLVMContext& Context); /// unloadProgram - If a program is running, kill it, then unload all traces /// of the current program. If no program is loaded, this method silently |