summaryrefslogtreecommitdiff
path: root/src/KM_util.cpp
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-03-22 18:04:11 +0100
committerCarl Hetherington <cth@carlh.net>2024-03-22 18:04:11 +0100
commit18610e37a74bdd8fcb4734b20b4dc2aca791fddb (patch)
tree37b9d251401fde302030432dbb3d33d4d8081f75 /src/KM_util.cpp
parent4b5d6e8d27dfd5fb282590538068662f4dbbf1c9 (diff)
Remove use of register keyword (reserved in C++17).
Diffstat (limited to 'src/KM_util.cpp')
-rwxr-xr-xsrc/KM_util.cpp4
1 files changed, 2 insertions, 2 deletions
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;