Skip to content

Commit

Permalink
Fixed unused function warning on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Nov 18, 2019
1 parent dd7fe0a commit df728f8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/cpuinfo/SDL_cpuinfo.c
Expand Up @@ -384,7 +384,7 @@ CPU_haveARMSIMD(void)
}
#endif

#if (defined(__LINUX__) || defined(__ANDROID__)) && defined(__ARM_ARCH) && !defined(HAVE_GETAUXVAL)
#if defined(__LINUX__) && defined(__ARM_ARCH) && !defined(HAVE_GETAUXVAL)
static int
readProcAuxvForNeon(void)
{
Expand All @@ -404,7 +404,6 @@ readProcAuxvForNeon(void)
}
#endif


static int
CPU_haveNEON(void)
{
Expand Down

0 comments on commit df728f8

Please sign in to comment.