From 7ad487eeeed417883b6b12def09f07f88039c4b7 Mon Sep 17 00:00:00 2001 From: Rubidium Date: Thu, 22 Jun 2023 17:17:25 +0200 Subject: [PATCH] Cleanup: remove now unused GetInt32/64 functions --- src/strings_internal.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/strings_internal.h b/src/strings_internal.h index c79551fde8..e214a3c1a1 100644 --- a/src/strings_internal.h +++ b/src/strings_internal.h @@ -92,17 +92,6 @@ public: return static_cast(ptr == nullptr ? 0 : ptr->data); } - int64 GetInt64() - { - return GetNextParameter(); - } - - /** Read an int32 from the argument array. @see GetInt64. */ - int32 GetInt32() - { - return GetNextParameter(); - } - /** * Get a new instance of StringParameters that is a "range" into the * remaining existing parameters. Upon destruction the offset in the parent