From bf4a68ebe2007b42f2f7750e655341a7126e25d9 Mon Sep 17 00:00:00 2001 From: Erick Tryzelaar Date: Sun, 30 Aug 2009 23:38:06 +0000 Subject: [PATCH] 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 --- include/llvm-c/Core.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h index e1a99531b55..40696e0aceb 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. */ -- 2.34.1