From 85edb1c711f7816ed1a30edd07b37d314fac216a Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Mon, 19 Feb 2018 09:58:44 +0100 Subject: Make the proper Windows APIs natively available to our tree. Tag #22. This bypasses custom definitions of some functions for things natively available in Windows 7. --- js/src/vm/Stopwatch.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'js/src/vm') diff --git a/js/src/vm/Stopwatch.h b/js/src/vm/Stopwatch.h index a1b8bbbcb..38a3eb801 100644 --- a/js/src/vm/Stopwatch.h +++ b/js/src/vm/Stopwatch.h @@ -301,9 +301,9 @@ struct PerformanceMonitoring { #if WINVER >= 0x0600 struct cpuid_t { - WORD group_; - BYTE number_; - cpuid_t(WORD group, BYTE number) + uint16_t group_; + uint8_t number_; + cpuid_t(uint16_t group, uint8_t number) : group_(group), number_(number) { } -- cgit v1.2.3