From 39b2ac8d6b757a83d95f47bb9116e90eb83bd4ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Sat, 27 Jul 2019 20:11:44 -0700 Subject: [PATCH] Fixed warning. --- tests/main_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/main_test.cpp b/tests/main_test.cpp index 3f12dff..2e0fbe2 100644 --- a/tests/main_test.cpp +++ b/tests/main_test.cpp @@ -5,13 +5,13 @@ #include "test.h" -static const char* s_argv[] = { "bx.test" }; - int runAllTests(int _argc, const char* _argv[]); #if BX_PLATFORM_ANDROID # include +static const char* s_argv[] = { "bx.test" }; + void ANativeActivity_onCreate(ANativeActivity*, void*, size_t) { exit(runAllTests(BX_COUNTOF(s_argv), s_argv) );