summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphilip.liard@gmail.com <philip.liard@gmail.com@ee073f10-1060-11df-b6a4-87a95322a99c>2013-06-17 15:12:24 +0000
committerphilip.liard@gmail.com <philip.liard@gmail.com@ee073f10-1060-11df-b6a4-87a95322a99c>2013-06-17 15:12:24 +0000
commitc636308f0ab6fb1af7589eaf0917103dc22fa61e (patch)
tree42f5a1c48217830a0cca92b4ec4a62273e927976
parentb886df44145f2b98006e6f394c4fbe0a5892c9a2 (diff)
downloadphonenumbers-c636308f0ab6fb1af7589eaf0917103dc22fa61e.tar.gz
CPP: Fix compilation error on Windows.
This appears when the library is built in Chromium. R=lararennie@google.com Review URL: https://codereview.appspot.com/10286044 git-svn-id: http://libphonenumber.googlecode.com/svn/trunk/cpp/src/phonenumbers@584 ee073f10-1060-11df-b6a4-87a95322a99c
-rw-r--r--base/basictypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/basictypes.h b/base/basictypes.h
index a35e9fc..ac63259 100644
--- a/base/basictypes.h
+++ b/base/basictypes.h
@@ -9,7 +9,7 @@
#include <stddef.h> // For size_t
#include <string.h> // for memcpy
-#ifndef COMPILER_MSVC
+#if !defined(_WIN32)
// stdint.h is part of C99 but MSVC doesn't have it.
#include <stdint.h> // For intptr_t.
#endif