diff options
author | lloyd <[email protected]> | 2010-10-13 02:20:49 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-13 02:20:49 +0000 |
commit | c00da53d958ef8c266012ae9425337143f14f46e (patch) | |
tree | 144932858569f60d1fbfe2f079638819a123accb /src/utils/cpuid.h | |
parent | fe4119c74b5e81a354a5313e4d2efbf9a135aa81 (diff) |
s/u32bit/size_t/ in utils
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; }; |