1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-20 14:23:08 +01:00

Fix main function

This commit is contained in:
Ted John
2016-12-02 17:16:12 +00:00
parent 9c973e20cd
commit 756e26ad45
2 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
// Make MSVC shut up about M_PI // Make MSVC shut up about M_PI
#include <math.h> #include <cmath>
extern "C" { extern "C" {
#include "util/sawyercoding.h" #include "util/sawyercoding.h"

View File

@@ -7,7 +7,7 @@
int main(int argc, char * * argv) int main(int argc, char * * argv)
{ {
testing::InitGoogleTest(&argc, argv); testing::InitGoogleTest(&argc, argv);
RUN_ALL_TESTS(); return RUN_ALL_TESTS();
} }
#endif #endif