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

Unified Diff: src/win32-math.h

Issue 14362023: Replace math.h with cmath (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates Created 7 years, 8 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 | « src/strtod.cc ('k') | src/win32-math.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/win32-math.h
diff --git a/src/win32-math.h b/src/win32-math.h
index 68759990b4307b5f40f0b528afbddfe5cea6c43b..0397c7e14eac0f1dcf009ba7ab470ed66889c61c 100644
--- a/src/win32-math.h
+++ b/src/win32-math.h
@@ -45,17 +45,17 @@ enum {
FP_NORMAL
};
-namespace v8 {
-int isfinite(double x);
-
-} // namespace v8
+namespace std {
-int isnan(double x);
+int isfinite(double x);
int isinf(double x);
+int isnan(double x);
int isless(double x, double y);
int isgreater(double x, double y);
int fpclassify(double x);
int signbit(double x);
+} // namespace std
+
#endif // V8_WIN32_MATH_H_
« no previous file with comments | « src/strtod.cc ('k') | src/win32-math.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698