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

Unified Diff: base/test/gtest_xml_util.cc

Issue 596103002: Fix more disabled MSVC warnings, base/ edition. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't assume char (un)signedness Created 6 years, 3 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
Index: base/test/gtest_xml_util.cc
diff --git a/base/test/gtest_xml_util.cc b/base/test/gtest_xml_util.cc
index 8a153dc8cc790440a97335aa575e6dcdc22f892c..7a5ba8a87d3039c1d01b90f96f2d830d0d9d628b 100644
--- a/base/test/gtest_xml_util.cc
+++ b/base/test/gtest_xml_util.cc
@@ -178,9 +178,9 @@ bool ProcessGTestOutput(const base::FilePath& output_file,
std::string test_time_str;
if (!xml_reader.NodeAttribute("time", &test_time_str))
return false;
- result.elapsed_time =
- TimeDelta::FromMicroseconds(strtod(test_time_str.c_str(), NULL) *
- Time::kMicrosecondsPerSecond);
+ result.elapsed_time = TimeDelta::FromMicroseconds(
+ static_cast<int64>(strtod(test_time_str.c_str(), NULL) *
+ Time::kMicrosecondsPerSecond));
result.status = TestResult::TEST_SUCCESS;

Powered by Google App Engine
This is Rietveld 408576698