summaryrefslogtreecommitdiffstats
path: root/base/chrono_utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'base/chrono_utils.cpp')
-rw-r--r--base/chrono_utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/chrono_utils.cpp b/base/chrono_utils.cpp
index dbe54830f..19080a5a7 100644
--- a/base/chrono_utils.cpp
+++ b/base/chrono_utils.cpp
@@ -28,7 +28,7 @@ boot_clock::time_point boot_clock::now() {
return boot_clock::time_point(std::chrono::seconds(ts.tv_sec) +
std::chrono::nanoseconds(ts.tv_nsec));
#else
- // Darwin does not support clock_gettime.
+ // Darwin and Windows do not support clock_gettime.
return boot_clock::time_point();
#endif // __linux__
}