From 05e407b0833ab1617afbd3be80666cb442eecdc9 Mon Sep 17 00:00:00 2001 From: "ulan@chromium.org" Date: Wed, 22 Aug 2012 14:45:25 +0000 Subject: [PATCH] Fix Windows build after r12364. R=yangguo@chromium.org Review URL: https://chromiumcodereview.appspot.com/10880004 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12365 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform.h b/src/platform.h index 7a32229..a32fbbc 100644 --- a/src/platform.h +++ b/src/platform.h @@ -84,8 +84,8 @@ inline int lrint(double flt) { // If the number is halfway between two integers, round to the even one. intgr--; } - return intgr; #endif + return intgr; } -- 2.7.4