From 115b4a1ad00ba156cfdee9f8a203dbeaa5f19e83 Mon Sep 17 00:00:00 2001 From: Philippe Liard Date: Mon, 17 Jun 2013 15:12:24 +0000 Subject: [PATCH] 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 --- cpp/src/phonenumbers/base/basictypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/phonenumbers/base/basictypes.h b/cpp/src/phonenumbers/base/basictypes.h index a35e9fce4..ac6325942 100644 --- a/cpp/src/phonenumbers/base/basictypes.h +++ b/cpp/src/phonenumbers/base/basictypes.h @@ -9,7 +9,7 @@ #include // For size_t #include // for memcpy -#ifndef COMPILER_MSVC +#if !defined(_WIN32) // stdint.h is part of C99 but MSVC doesn't have it. #include // For intptr_t. #endif