#pragma once
-#include "ValueToString.h"
#include <limits.h>
#include <limits>
#include <math.h>
#include <stdlib.h>
#include <wtf/MathExtras.h>
#include <wtf/SaturatedArithmetic.h>
+#include <wtf/text/ValueToString.h>
namespace WTF {
class TextStream;
return value.toInt() == value;
}
+} // namespace WebCore
+
#ifndef NDEBUG
+namespace WTF {
// This structure is used by PODIntervalTree for debugging.
template <>
-struct ValueToString<LayoutUnit> {
- static String string(const LayoutUnit value) { return String::number(value.toFloat()); }
+struct ValueToString<WebCore::LayoutUnit> {
+ static String string(const WebCore::LayoutUnit value) { return String::number(value.toFloat()); }
};
-#endif
-} // namespace WebCore
+} // namespace WTF
+#endif