Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
pappeste
2021-06-28 14:40:29 -07:00
committed by Esteban Papp
parent 3172a82937
commit dcab2751de
22 changed files with 27 additions and 27 deletions
@@ -130,7 +130,7 @@ namespace AZ
template<typename T, size_t ElementsPerPage, class Allocator>
struct StableDynamicArray<T, ElementsPerPage, Allocator>::Page
{
static constexpr size_t InvalidPage = -1;
static constexpr size_t InvalidPage = std::numeric_limits<size_t>::max();
static constexpr uint64_t FullBits = 0xFFFFFFFFFFFFFFFFull;
static constexpr size_t NumUint64_t = ElementsPerPage / 64;