Skip to content
This repository has been archived by the owner on May 23, 2021. It is now read-only.

Commit

Permalink
Proper namespace for isBase64Char
Browse files Browse the repository at this point in the history
  • Loading branch information
pdesaulniers authored Feb 24, 2018
1 parent 279c265 commit 6f622cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distrho/extra/Base64.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 6f622cd

Please sign in to comment.