aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ExecutionEngine/JITMemoryManager.h
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2009-10-14 20:28:33 +0000
committerEric Christopher <echristo@apple.com>2009-10-14 20:28:33 +0000
commit41b5adf20208f46e4b1104d6d473710fbfa61eb9 (patch)
treed3a4721092a33ae0ce3c932f009911cac8e170a3 /include/llvm/ExecutionEngine/JITMemoryManager.h
parent6c79e2c9aacba94d830f2944c8d5e4f3a4d91eb8 (diff)
Remove a bunch of unused arguments from functions, silencing a
warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84130 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ExecutionEngine/JITMemoryManager.h')
-rw-r--r--include/llvm/ExecutionEngine/JITMemoryManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ExecutionEngine/JITMemoryManager.h b/include/llvm/ExecutionEngine/JITMemoryManager.h
index 21dee55347..9f6fb63fbe 100644
--- a/include/llvm/ExecutionEngine/JITMemoryManager.h
+++ b/include/llvm/ExecutionEngine/JITMemoryManager.h
@@ -149,7 +149,7 @@ public:
/// CheckInvariants - For testing only. Return true if all internal
/// invariants are preserved, or return false and set ErrorStr to a helpful
/// error message.
- virtual bool CheckInvariants(std::string &ErrorStr) {
+ virtual bool CheckInvariants(std::string &) {
return true;
}