aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/base64.cpp
diff options
context:
space:
mode:
authorLiam Mitchell <[email protected]>2026-03-09 18:25:30 -0700
committerLiam Mitchell <[email protected]>2026-03-09 18:25:30 -0700
commit57c1683b2935c834250b73eb506319ed67946160 (patch)
tree1fc8f237010b26e65659b731fe6f6eae30422f5c /src/zencore/base64.cpp
parentAllow external OidcToken executable to be specified unless disabled via comma... (diff)
parentreduce lock time for project store gc precache and gc validate (#750) (diff)
downloadzen-57c1683b2935c834250b73eb506319ed67946160.tar.xz
zen-57c1683b2935c834250b73eb506319ed67946160.zip
Merge branch 'main' into lm/oidctoken-exe-path
Diffstat (limited to 'src/zencore/base64.cpp')
-rw-r--r--src/zencore/base64.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zencore/base64.cpp b/src/zencore/base64.cpp
index b97dfebbf..1f56ee6c3 100644
--- a/src/zencore/base64.cpp
+++ b/src/zencore/base64.cpp
@@ -101,7 +101,7 @@ Base64::Encode(const uint8_t* Source, uint32_t Length, CharType* Dest)
return uint32_t(EncodedBytes - Dest);
}
-template ZENCORE_API uint32_t Base64::Encode<char>(const uint8_t* Source, uint32_t Length, char* Dest);
-template ZENCORE_API uint32_t Base64::Encode<wchar_t>(const uint8_t* Source, uint32_t Length, wchar_t* Dest);
+template uint32_t Base64::Encode<char>(const uint8_t* Source, uint32_t Length, char* Dest);
+template uint32_t Base64::Encode<wchar_t>(const uint8_t* Source, uint32_t Length, wchar_t* Dest);
} // namespace zen