| Index: third_party/WebKit/Source/wtf/MathExtras.h
|
| diff --git a/third_party/WebKit/Source/wtf/MathExtras.h b/third_party/WebKit/Source/wtf/MathExtras.h
|
| index 36ad81241aeea2d7b31f5a71d4bb5df9fc610ec2..6ff82028f7163fcc7a06966151bfd4bfd296f06f 100644
|
| --- a/third_party/WebKit/Source/wtf/MathExtras.h
|
| +++ b/third_party/WebKit/Source/wtf/MathExtras.h
|
| @@ -59,8 +59,8 @@ const float piOverFourFloat = static_cast<float>(M_PI_4);
|
| const double twoPiDouble = piDouble * 2.0;
|
| const float twoPiFloat = piFloat * 2.0f;
|
|
|
| -#if OS(ANDROID) || COMPILER(MSVC)
|
| -// ANDROID and MSVC's math.h does not currently supply log2 or log2f.
|
| +#if OS(ANDROID)
|
| +// ANDROID's math.h does not currently supply log2 or log2f.
|
| inline double log2(double num) {
|
| // This constant is roughly M_LN2, which is not provided by default on Windows
|
| // and Android.
|
|
|