Skip to content

Commit

Permalink
No define strtoll/strtoull for VS2013 and above
Browse files Browse the repository at this point in the history
  • Loading branch information
myd7349 authored and acozzette committed Mar 12, 2019
1 parent 70dc39e commit 791b863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/google/protobuf/stubs/strutil.h
Expand Up @@ -43,7 +43,7 @@
namespace google {
namespace protobuf {

#ifdef _MSC_VER
#if defined(_MSC_VER) && _MSC_VER < 1800
#define strtoll _strtoi64
#define strtoull _strtoui64
#elif defined(__DECCXX) && defined(__osf__)
Expand Down

0 comments on commit 791b863

Please sign in to comment.