From 18610e37a74bdd8fcb4734b20b4dc2aca791fddb Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 22 Mar 2024 18:04:11 +0100 Subject: Remove use of register keyword (reserved in C++17). --- src/KM_util.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/KM_util.cpp') diff --git a/src/KM_util.cpp b/src/KM_util.cpp index 804abcb..ec20374 100755 --- a/src/KM_util.cpp +++ b/src/KM_util.cpp @@ -360,8 +360,8 @@ Kumu::base64encode(const byte_t* buf, ui32_t buf_len, char* strbuf, ui32_t strbu i32_t Kumu::base64decode(const char* str, byte_t* buf, ui32_t buf_len, ui32_t* char_count) { - register byte_t c = 0, d = 0; - register ui32_t phase = 0, i = 0; + byte_t c = 0, d = 0; + ui32_t phase = 0, i = 0; if ( str == 0 || buf == 0 || char_count == 0 ) return -1; -- cgit v1.2.3