Skip to content
Snippets Groups Projects
Commit c722cfec authored by Alexander Alashkin's avatar Alexander Alashkin Committed by Cesanta Bot
Browse files

Fix c++11 mg compilation

PUBLISHED_FROM=a121a15698884203a573741e73fefaa5923dce4d
parent 835af2ca
No related branches found
No related tags found
No related merge requests found
......@@ -344,10 +344,11 @@ typedef struct _stati64 cs_stat_t;
/*
* osx correctly avoids defining strtoll when compiling in strict ansi mode.
* c++ 11 standard defines strtoll as well.
* We require strtoll, and if your embedded pre-c99 compiler lacks one, please
* implement a shim.
*/
#if !(defined(__DARWIN_C_LEVEL) && __DARWIN_C_LEVEL >= 200809L)
#if !(defined(__cplusplus) && __cplusplus >= 201103L) && !(defined(__DARWIN_C_LEVEL) && __DARWIN_C_LEVEL >= 200809L)
long long strtoll(const char *, char **, int);
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment