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

Unified Diff: util/thread/worker_thread_test.cc

Issue 1556043005: Fix build break after 6d829e9af7d7630422d8095747905015d347b3be. (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Windows Created 4 years, 12 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 | « handler/crash_report_upload_thread.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/thread/worker_thread_test.cc
diff --git a/util/thread/worker_thread_test.cc b/util/thread/worker_thread_test.cc
index 9e1c76f191ac658ba0bfa6ebfff451ba59bc3abb..24f0cb3d090c382e886c6564cec40b3043b0eb89 100644
--- a/util/thread/worker_thread_test.cc
+++ b/util/thread/worker_thread_test.cc
@@ -22,7 +22,7 @@ namespace crashpad {
namespace test {
namespace {
-const uint64_t kNanosecondsPerSecond = 1E9;
+const uint64_t kNanosecondsPerSecond = static_cast<uint64_t>(1E9);
Robert Sesek 2016/01/04 22:26:23 Also had to add this static_cast on Windows.
class WorkDelegate : public WorkerThread::Delegate {
public:
« no previous file with comments | « handler/crash_report_upload_thread.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698