| Index: Source/platform/geometry/FloatSize.cpp
|
| diff --git a/Source/platform/geometry/FloatSize.cpp b/Source/platform/geometry/FloatSize.cpp
|
| index f4cfd057388eb221205efb08637f8ab0c91a70a3..2e48b173731139f29834d889635adf5dd8b279fc 100644
|
| --- a/Source/platform/geometry/FloatSize.cpp
|
| +++ b/Source/platform/geometry/FloatSize.cpp
|
| @@ -33,8 +33,6 @@
|
| #include <limits>
|
| #include <math.h>
|
|
|
| -using namespace std;
|
| -
|
| namespace blink {
|
|
|
| FloatSize::FloatSize(const LayoutSize& size)
|
| @@ -50,7 +48,7 @@ float FloatSize::diagonalLength() const
|
|
|
| bool FloatSize::isZero() const
|
| {
|
| - return fabs(m_width) < numeric_limits<float>::epsilon() && fabs(m_height) < numeric_limits<float>::epsilon();
|
| + return fabs(m_width) < std::numeric_limits<float>::epsilon() && fabs(m_height) < std::numeric_limits<float>::epsilon();
|
| }
|
|
|
| bool FloatSize::isExpressibleAsIntSize() const
|
|
|