From b5e05864b68dd053604bd845e514e9dfe3146945 Mon Sep 17 00:00:00 2001 From: Karutoh Date: Mon, 1 Jul 2024 20:23:17 -0700 Subject: [PATCH] Removed const arguments from GC header. --- include/ehs/GC.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ehs/GC.h b/include/ehs/GC.h index c6ad395..76c2dc2 100644 --- a/include/ehs/GC.h +++ b/include/ehs/GC.h @@ -36,7 +36,7 @@ namespace ehs /// Sets the maximum amount of garbage to delete per poll. /// @param[in] newMax The new maximum. - static void SetMax(const UInt_64 newMax); + static void SetMax(UInt_64 newMax); /// Gets the maximum amount of garbage to delete per poll. /// @returns The maximum. @@ -44,7 +44,7 @@ namespace ehs /// Sets a new amount for memory pre-allocation to save on memory operations. /// @param[in] newStride The stride to pre-allocate. - static void SetStride(const UInt_64 newStride); + static void SetStride(UInt_64 newStride); /// The amount of data pre-allocated to save on memory operations. /// @returns The stride.