diff options
Diffstat (limited to 'src/utils/cpuid.h')
-rw-r--r-- | src/utils/cpuid.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/cpuid.h b/src/utils/cpuid.h index 6cb4092bb..863ba5b63 100644 --- a/src/utils/cpuid.h +++ b/src/utils/cpuid.h @@ -26,7 +26,7 @@ class BOTAN_DLL CPUID /** * Return a best guess of the cache line size */ - static u32bit cache_line_size() { return cache_line; } + static size_t cache_line_size() { return cache_line; } /** * Check if the processor supports RDTSC @@ -105,7 +105,7 @@ class BOTAN_DLL CPUID } static u64bit x86_processor_flags; - static u32bit cache_line; + static size_t cache_line; static bool altivec_capable; }; |