diff options
author | Erick Tryzelaar <idadesub@users.sourceforge.net> | 2009-08-30 23:38:06 +0000 |
---|---|---|
committer | Erick Tryzelaar <idadesub@users.sourceforge.net> | 2009-08-30 23:38:06 +0000 |
commit | bf4a68ebe2007b42f2f7750e655341a7126e25d9 (patch) | |
tree | 0a81f4802387e28b863c606b32b6afec406dcc2b | |
parent | 23603a61c9bd43224db0b52126a415901d7550b4 (diff) |
Make sure we specify no arguments for context functions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80525 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm-c/Core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h index e1a99531b5..40696e0ace 100644 --- a/include/llvm-c/Core.h +++ b/include/llvm-c/Core.h @@ -208,8 +208,8 @@ void LLVMDisposeMessage(char *Message); /*===-- Modules -----------------------------------------------------------===*/ /* Create and destroy contexts. */ -LLVMContextRef LLVMContextCreate(); -LLVMContextRef LLVMGetGlobalContext(); +LLVMContextRef LLVMContextCreate(void); +LLVMContextRef LLVMGetGlobalContext(void); void LLVMContextDispose(LLVMContextRef C); /* Create and destroy modules. */ |