summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Desaulniers <desaulniers.patrick@carrefour.cegepvicto.ca>2018-02-23 23:21:54 -0500
committerGitHub <noreply@github.com>2018-02-23 23:21:54 -0500
commit6f622cdc8dfb3e3037715b0d61332568da4539ca (patch)
treeeee5c30d2e23b90a2a0f52672b5e72ca4e7d0844
parent279c265361a9da5a1491107585c75284e0dc0e18 (diff)
Proper namespace for isBase64Char
-rw-r--r--distrho/extra/Base64.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/distrho/extra/Base64.hpp b/distrho/extra/Base64.hpp
index da661c17..d3eed6be 100644
--- a/distrho/extra/Base64.hpp
+++ b/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);