Skip to content

Commit

Permalink
Fix including
Browse files Browse the repository at this point in the history
  • Loading branch information
owent committed Aug 4, 2023
1 parent 67dc6ff commit b8f2e5c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sdk/src/common/base64.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#else
# include <assert.h>
#endif
#include <cstring>
#include <iostream>

#if defined(HAVE_ABSEIL)
Expand Down Expand Up @@ -326,7 +327,7 @@ OPENTELEMETRY_EXPORT bool Base64Unescape(opentelemetry::nostd::string_view src,
{
return true;
}

std::size_t olen = 0;

if (-2 == Base64UnescapeInternal(nullptr, 0, &olen,
Expand Down

0 comments on commit b8f2e5c

Please sign in to comment.