Skip to content

Commit

Permalink
Fix warning C4996, switch to using _stricmp instead of stricmp in VC++
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Mar 9, 2019
1 parent 8a5ed86 commit f3c69f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions radiant/modelfile/picomodel/picointernal.h
Expand Up @@ -57,8 +57,8 @@ extern "C"

/* os dependent replacements */
#if WIN32 || _WIN32
#define _pico_stricmp stricmp
#define _pico_strnicmp strnicmp
#define _pico_stricmp _stricmp
#define _pico_strnicmp _strnicmp
#else
#define _pico_stricmp strcasecmp
#define _pico_strnicmp strncasecmp
Expand Down

0 comments on commit f3c69f9

Please sign in to comment.