mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
support for msvs 2015
This commit is contained in:
parent
58345b18d9
commit
4a56d614cf
1 changed files with 4 additions and 0 deletions
|
@ -59,6 +59,8 @@ int safe_vsnprintf(char *str, size_t size, const char *format, va_list ap) {
|
|||
# pragma warning(pop)
|
||||
#endif
|
||||
|
||||
#if _MSC_VER < 1900 // msvs 2015 finally includes snprintf
|
||||
|
||||
int snprintf(char *str, size_t size, const char *format, ...) {
|
||||
int r;
|
||||
va_list ap;
|
||||
|
@ -68,4 +70,6 @@ int snprintf(char *str, size_t size, const char *format, ...) {
|
|||
return r;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* #if !defined(__MINGW32__) && !defined(__MINGW64__) */
|
||||
|
|
Loading…
Add table
Reference in a new issue