summaryrefslogtreecommitdiff
path: root/zen/tick_count.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/tick_count.h')
-rw-r--r--zen/tick_count.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/tick_count.h b/zen/tick_count.h
index 647876fb..89910e14 100644
--- a/zen/tick_count.h
+++ b/zen/tick_count.h
@@ -122,7 +122,7 @@ TickVal getTicks() //return !isValid() on error
LARGE_INTEGER now = {};
if (!::QueryPerformanceCounter(&now))
return TickVal();
- //detailed info about QPC: http://msdn.microsoft.com/en-us/library/windows/desktop/dn553408%28v=vs.85%29.aspx
+ //detailed info about QPC: https://msdn.microsoft.com/en-us/library/windows/desktop/dn553408
//- MSDN: "No need to set the thread affinity"
#elif defined ZEN_LINUX
bgstack15