From 21802be151bc9bf70834cd3f5d724f81ff0d9ba7 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sat, 27 Jul 2013 14:06:06 +0200 Subject: [PATCH] Removed C++ macro setup in internal header for Android port which is only C now. --- src/core/android/SDL_android.h | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/core/android/SDL_android.h b/src/core/android/SDL_android.h index d53652f88..9045eb5df 100644 --- a/src/core/android/SDL_android.h +++ b/src/core/android/SDL_android.h @@ -20,13 +20,6 @@ */ #include "SDL_config.h" -/* Set up for C function definitions, even when using C++ */ -#ifdef __cplusplus -/* *INDENT-OFF* */ -extern "C" { -/* *INDENT-ON* */ -#endif - #include "SDL_rect.h" /* Interface from the SDL library into the Android Java activity */ @@ -68,11 +61,4 @@ int Android_JNI_SetupThread(void); /* Generic messages */ int Android_JNI_SendMessage(int command, int param); -/* Ends C function definitions when using C++ */ -#ifdef __cplusplus -/* *INDENT-OFF* */ -} -/* *INDENT-ON* */ -#endif - /* vi: set ts=4 sw=4 expandtab: */