Chromium Code Reviews| Index: base/macros.h |
| diff --git a/base/macros.h b/base/macros.h |
| index b3e32cac8fdaf488a660d25f667431e65f099b7f..fa12dd2e6bca88aa06a2e425dc3a66ab83e48207 100644 |
| --- a/base/macros.h |
| +++ b/base/macros.h |
| @@ -55,7 +55,7 @@ template <typename T, size_t N> char (&ArraySizeHelper(T (&array)[N]))[N]; |
| // support. |
| // |
| // float f = 3.14159265358979; |
| -// int i = bit_cast<int32>(f); |
| +// int i = bit_cast<int32_t>(f); |
| // // i = 0x40490fdb |
| // |
| // The classical address-casting method is: |