Browse Source

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
pull/567/head
Philippe Liard 13 years ago
committed by Mihaela Rosca
parent
commit
115b4a1ad0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cpp/src/phonenumbers/base/basictypes.h

+ 1
- 1
cpp/src/phonenumbers/base/basictypes.h View File

@ -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


Loading…
Cancel
Save