Browse Source

Merge pull request #37 from pdesaulniers/patch-2

Proper namespace for isBase64Char
pull/44/head
Filipe Coelho GitHub 7 years ago
parent
commit
6a26ce4147
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      distrho/extra/Base64.hpp

+ 1
- 1
distrho/extra/Base64.hpp View File

@@ -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);



Loading…
Cancel
Save