diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-03-22 18:04:11 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-03-22 18:04:11 +0100 |
| commit | 18610e37a74bdd8fcb4734b20b4dc2aca791fddb (patch) | |
| tree | 37b9d251401fde302030432dbb3d33d4d8081f75 /src/KM_util.cpp | |
| parent | 4b5d6e8d27dfd5fb282590538068662f4dbbf1c9 (diff) | |
Remove use of register keyword (reserved in C++17).
Diffstat (limited to 'src/KM_util.cpp')
| -rwxr-xr-x | src/KM_util.cpp | 4 |
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; |
