commit | a9ad04191cb56c42944b17980b8b2bb2afe11ab2 | [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 | 2ffb0ce7dce2d5c243b90493807308af6fab0528 [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 }