diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-02-19 09:58:44 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-02-19 09:58:44 +0100 |
commit | 85edb1c711f7816ed1a30edd07b37d314fac216a (patch) | |
tree | 814487cc06993dd6e133ab4b23e5bc16b6cb5e2d /js/src/vm/Stopwatch.h | |
parent | bc9ad467f0886f8799c2c4781b1a0b654b362ecf (diff) | |
download | uxp-85edb1c711f7816ed1a30edd07b37d314fac216a.tar.gz |
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.
Diffstat (limited to 'js/src/vm/Stopwatch.h')
-rw-r--r-- | js/src/vm/Stopwatch.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/src/vm/Stopwatch.h b/js/src/vm/Stopwatch.h index a1b8bbbcb3..38a3eb801c 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) { } |