Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1036)

Unified Diff: third_party/WebKit/Source/platform/PlatformTouchPoint.h

Issue 1705173003: Use std::isnan instead of isnan in global ns (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/PlatformTouchPoint.h
diff --git a/third_party/WebKit/Source/platform/PlatformTouchPoint.h b/third_party/WebKit/Source/platform/PlatformTouchPoint.h
index e806327f43fe066fed9d2ea34a9ac33e0e8a13df..b9071f1534b93d731d72dfe5655f0edb45c42e19 100644
--- a/third_party/WebKit/Source/platform/PlatformTouchPoint.h
+++ b/third_party/WebKit/Source/platform/PlatformTouchPoint.h
@@ -49,7 +49,7 @@ public:
FloatPoint pos() const { return m_pos; }
FloatSize radius() const { return m_radius; }
float rotationAngle() const { return m_rotationAngle; }
- float force() const { ASSERT(!isnan(pointerProperties().force)); return pointerProperties().force; }
+ float force() const { ASSERT(!std::isnan(pointerProperties().force)); return pointerProperties().force; }
protected:
WebPointerProperties m_pointerProperties;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698