From f0db01acc035c9af986dedc25e8d854d62296c57 Mon Sep 17 00:00:00 2001 From: "philip.liard@gmail.com" 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 git-svn-id: http://libphonenumber.googlecode.com/svn/trunk@584 ee073f10-1060-11df-b6a4-87a95322a99c --- 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 a35e9fc..ac63259 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 -- 2.7.4