Chromium Code Reviews| Index: runtime/vm/os_win.cc |
| diff --git a/runtime/vm/os_win.cc b/runtime/vm/os_win.cc |
| index 551607de192d6bde5c6830409c6723edfadbe855..1e055f4c45fe49f1301fdecb3d6111667775c719 100644 |
| --- a/runtime/vm/os_win.cc |
| +++ b/runtime/vm/os_win.cc |
| @@ -132,7 +132,7 @@ int64_t OS::GetCurrentMonotonicTicks() { |
| // Grab performance counter value. |
| LARGE_INTEGER now; |
| QueryPerformanceCounter(&now); |
| - int64_t qpc_value = static_cast<int64_t>(now.QuadPart); |
| + return static_cast<int64_t>(now.QuadPart); |
| } |