Better #ifdef test for secure STL

This commit is contained in:
Jasha Droppo 2014-11-07 18:22:51 -08:00
Родитель 735227c8b8
Коммит 91e7bcba48
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -733,7 +733,7 @@ public:
resize (0);
// strtok_s not available on all platforms - so backoff to strtok on those
#ifdef strtok_s
#if __STDC_WANT_SECURE_LIB__
char * context; // for strtok_s()
for (char * p = strtok_s (buf, delim, &context); p; p = strtok_s (NULL, delim, &context))
push_back (p);