Repository: lucy-clownfish
Updated Branches:
  refs/heads/master a47be68a0 -> 8c6d95a34


Fix nullary function declarations


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/ace28017
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/ace28017
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/ace28017

Branch: refs/heads/master
Commit: ace28017f14061bcf85cd610056862bd59b0ec11
Parents: a47be68
Author: Nick Wellnhofer <wellnho...@aevum.de>
Authored: Fri Aug 26 13:55:24 2016 +0200
Committer: Nick Wellnhofer <wellnho...@aevum.de>
Committed: Fri Aug 26 13:55:24 2016 +0200

----------------------------------------------------------------------
 compiler/modules/CommonMark/src/cmark.h        | 4 ++--
 compiler/src/CFCGoClass.h                      | 2 +-
 compiler/src/CFCPerlClass.h                    | 2 +-
 compiler/src/CFCPyClass.h                      | 2 +-
 runtime/core/Clownfish/ByteBuf.c               | 2 +-
 runtime/core/Clownfish/CharBuf.c               | 2 +-
 runtime/core/Clownfish/TestHarness/TestSuite.c | 2 +-
 7 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/ace28017/compiler/modules/CommonMark/src/cmark.h
----------------------------------------------------------------------
diff --git a/compiler/modules/CommonMark/src/cmark.h 
b/compiler/modules/CommonMark/src/cmark.h
index 4a85f26..a4847ed 100644
--- a/compiler/modules/CommonMark/src/cmark.h
+++ b/compiler/modules/CommonMark/src/cmark.h
@@ -538,13 +538,13 @@ char *cmark_render_latex(cmark_node *root, int options, 
int width);
  * In hexadecimal format, the number 0x010203 represents version 1.2.3.
  */
 CMARK_EXPORT
-int cmark_version();
+int cmark_version(void);
 
 /** The library version string for runtime checks. Also available as
  * macro CMARK_VERSION_STRING for compile time checks.
  */
 CMARK_EXPORT
-const char *cmark_version_string();
+const char *cmark_version_string(void);
 
 /** # AUTHORS
  *

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/ace28017/compiler/src/CFCGoClass.h
----------------------------------------------------------------------
diff --git a/compiler/src/CFCGoClass.h b/compiler/src/CFCGoClass.h
index 4e2cacf..2c3e332 100644
--- a/compiler/src/CFCGoClass.h
+++ b/compiler/src/CFCGoClass.h
@@ -50,7 +50,7 @@ CFCGoClass_singleton(const char *class_name);
 /** All registered class bindings.
  */
 CFCGoClass**
-CFCGoClass_registry();
+CFCGoClass_registry(void);
 
 /** Release all memory and references held by the registry.
  */

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/ace28017/compiler/src/CFCPerlClass.h
----------------------------------------------------------------------
diff --git a/compiler/src/CFCPerlClass.h b/compiler/src/CFCPerlClass.h
index 60bd08a..9713379 100644
--- a/compiler/src/CFCPerlClass.h
+++ b/compiler/src/CFCPerlClass.h
@@ -61,7 +61,7 @@ CFCPerlClass_singleton(const char *class_name);
 /** All registered class bindings.
  */
 CFCPerlClass**
-CFCPerlClass_registry();
+CFCPerlClass_registry(void);
 
 /** Release all memory and references held by the registry.
  */

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/ace28017/compiler/src/CFCPyClass.h
----------------------------------------------------------------------
diff --git a/compiler/src/CFCPyClass.h b/compiler/src/CFCPyClass.h
index b905502..8ec5d54 100644
--- a/compiler/src/CFCPyClass.h
+++ b/compiler/src/CFCPyClass.h
@@ -46,7 +46,7 @@ CFCPyClass_singleton(const char *class_name);
 /** All registered class bindings.
   */
 CFCPyClass**
-CFCPyClass_registry();
+CFCPyClass_registry(void);
 
 /** Release all memory and references held by the registry.
   */

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/ace28017/runtime/core/Clownfish/ByteBuf.c
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/ByteBuf.c b/runtime/core/Clownfish/ByteBuf.c
index dc03cf5..6bb0072 100644
--- a/runtime/core/Clownfish/ByteBuf.c
+++ b/runtime/core/Clownfish/ByteBuf.c
@@ -42,7 +42,7 @@ S_grow_and_oversize(ByteBuf *self, size_t min_size);
 // Not inlining the THROW macro reduces code size and complexity of
 // SI_add_grow_and_oversize.
 static void
-S_overflow_error();
+S_overflow_error(void);
 
 ByteBuf*
 BB_new(size_t capacity) {

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/ace28017/runtime/core/Clownfish/CharBuf.c
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/CharBuf.c b/runtime/core/Clownfish/CharBuf.c
index 30f54dd..313083a 100644
--- a/runtime/core/Clownfish/CharBuf.c
+++ b/runtime/core/Clownfish/CharBuf.c
@@ -54,7 +54,7 @@ S_grow_and_oversize(CharBuf *self, size_t min_size);
 // Not inlining the THROW macro reduces code size and complexity of
 // SI_add_grow_and_oversize.
 static void
-S_overflow_error();
+S_overflow_error(void);
 
 // Helper function for throwing invalid format specifier error.
 static void

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/ace28017/runtime/core/Clownfish/TestHarness/TestSuite.c
----------------------------------------------------------------------
diff --git a/runtime/core/Clownfish/TestHarness/TestSuite.c 
b/runtime/core/Clownfish/TestHarness/TestSuite.c
index c382a9b..4293640 100644
--- a/runtime/core/Clownfish/TestHarness/TestSuite.c
+++ b/runtime/core/Clownfish/TestHarness/TestSuite.c
@@ -32,7 +32,7 @@
 #include "Clownfish/Class.h"
 
 static void
-S_unbuffer_stdout();
+S_unbuffer_stdout(void);
 
 TestSuite*
 TestSuite_new() {

Reply via email to