Browse Source

Merge pull request #645 from hankinsoft/master

Fix for 'This function declaration is not a prototype'.
August "Gus" Mueller 8 years ago
parent
commit
f36732ca5c
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/sample/main.m

+ 3 - 3
src/sample/main.m

@@ -10,9 +10,9 @@
 #define FMDBQuickCheck(SomeBool) { if (!(SomeBool)) { NSLog(@"Failure on line %d", __LINE__); abort(); } }
 
 void testPool(NSString *dbPath);
-void testDateFormat();
-void FMDBReportABugFunction();
-void testStatementCaching();
+void testDateFormat(void);
+void FMDBReportABugFunction(void);
+void testStatementCaching(void);
 
 int main (int argc, const char * argv[]) {