fixed make_pair issue in LLVMjit

pull/6/head
Kevin Lin 11 years ago
parent c8c878f92e
commit 4f351352c1
  1. 2
      libclamav/c++/llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp

@ -143,7 +143,7 @@ void JITDebugRegisterer::RegisterFunction(const Function *F, DebugInfo &I) {
// Add a mapping from F to the entry and buffer, so we can delete this
// info later.
FnMap[F] = std::make_pair<std::string, jit_code_entry*>(Buffer, JITCodeEntry);
FnMap[F] = std::pair<std::string, jit_code_entry*>(Buffer, JITCodeEntry);
// Acquire the lock and do the registration.
{

Loading…
Cancel
Save