Chromium Code Reviews| 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: |