summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2018-07-23 12:39:34 +0200
committerKai Koehne <kai.koehne@qt.io>2018-07-23 11:05:16 +0000
commitc020786f57b8f5f3a450a8b77f850afe7c0d3f25 (patch)
tree7495077b557c178498143a6d1f35e8d4e51154c2
parenteea22d3cacf0b4be77360fe99e711b4e01c57390 (diff)
Fix compilation failure in time_win.cc
Amends db81dc68 Change-Id: Ib4bd2b43e35e2417ca0a8a12c874ae5477bef2c6 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
-rw-r--r--chromium/base/time/time_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/base/time/time_win.cc b/chromium/base/time/time_win.cc
index 913c0a09e5d..9edfbd74390 100644
--- a/chromium/base/time/time_win.cc
+++ b/chromium/base/time/time_win.cc
@@ -630,7 +630,7 @@ ThreadTicks ThreadTicks::GetForThread(
// static
bool ThreadTicks::IsSupportedWin() {
- static bool is_supported = base::CPU().has_non_stop_time_stamp_counter());
+ static bool is_supported = base::CPU().has_non_stop_time_stamp_counter();
return is_supported;
}