summaryrefslogtreecommitdiff
path: root/src/KM_util.cpp
diff options
context:
space:
mode:
authorcah <cah@ableton.com>2022-05-02 19:54:59 +0200
committercah <cah@ableton.com>2022-05-02 21:14:17 +0200
commitb9daf31fb19ac9f95e431c5bf2cdbf4cba15683a (patch)
treebcdcacd1fc247dec4601c5afc68b85d752d51725 /src/KM_util.cpp
parentc5b8b7e1e229895b8afcb20287f22f90dd8e9d45 (diff)
Remove uses of register.
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 210e7ac..2935811 100755
--- a/src/KM_util.cpp
+++ b/src/KM_util.cpp
@@ -356,8 +356,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;