mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 10:42:36 +01:00
bf_t: Remove <limits> lib dependency
This commit is contained in:
parent
33fe0fdd6b
commit
d2f3ada312
@ -1,7 +1,6 @@
|
||||
#pragma once
|
||||
#pragma once
|
||||
|
||||
#include "types.h"
|
||||
#include <limits>
|
||||
|
||||
template<typename T, uint N>
|
||||
struct bf_base
|
||||
@ -17,7 +16,7 @@ struct bf_base
|
||||
static constexpr uint bitsize = N;
|
||||
|
||||
// All ones mask
|
||||
static constexpr utype mask1 = std::numeric_limits<utype>::max();
|
||||
static constexpr utype mask1 = static_cast<utype>(UINTMAX_MAX);
|
||||
|
||||
// Value mask
|
||||
static constexpr utype vmask = mask1 >> (bitmax - bitsize);
|
||||
|
Loading…
Reference in New Issue
Block a user