commit | 3dbe9443c80ab668ad5cc8547fdb874634f25818 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Wed Aug 12 22:10:57 2009 +0000 |
committer | Dan Gohman <gohman@apple.com> | Wed Aug 12 22:10:57 2009 +0000 |
tree | 217ac479944faf363c1d09f76ff1b9eb70fbbd57 | |
parent | 745d9d3b20414f44393b9b80f4edd87080d250c5 [diff] [blame] |
This void is implicit in C++. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78848 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/ExecutionEngine/JIT/Intercept.cpp b/lib/ExecutionEngine/JIT/Intercept.cpp index 3314339..f1e900f 100644 --- a/lib/ExecutionEngine/JIT/Intercept.cpp +++ b/lib/ExecutionEngine/JIT/Intercept.cpp
@@ -85,7 +85,7 @@ } // jit_atexit - Used to intercept the "atexit" library call. -static int jit_atexit(void (*Fn)(void)) { +static int jit_atexit(void (*Fn)()) { AtExitHandlers.push_back(Fn); // Take note of atexit handler... return 0; // Always successful }