Browse Source
Merge pull request #37 from pdesaulniers/patch-2
Proper namespace for isBase64Char
pull/44/head
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
distrho/extra/Base64.hpp
|
|
@@ -106,7 +106,7 @@ std::vector<uint8_t> d_getChunkFromBase64String(const char* const base64string) |
|
|
|
if (c == ' ' || c == '\n') |
|
|
|
continue; |
|
|
|
|
|
|
|
DISTRHO_SAFE_ASSERT_CONTINUE(CarlaBase64Helpers::isBase64Char(c)); |
|
|
|
DISTRHO_SAFE_ASSERT_CONTINUE(DistrhoBase64Helpers::isBase64Char(c)); |
|
|
|
|
|
|
|
charArray4[i++] = static_cast<uint>(c); |
|
|
|
|
|
|
|