Merge pull request #10352 from JosJuice/android-analytics-static

Android: Mark s_android_send_report as static
This commit is contained in:
Mai M 2022-01-06 07:41:03 -05:00 committed by GitHub
commit 5d11dc1926
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -8,15 +8,18 @@
namespace Common
{
std::function<void(std::string, std::string)> s_android_send_report;
static std::function<void(std::string, std::string)> s_android_send_report;
void AndroidSetReportHandler(std::function<void(std::string, std::string)> func)
{
s_android_send_report = std::move(func);
}
AndroidAnalyticsBackend::AndroidAnalyticsBackend(std::string passed_endpoint)
: m_endpoint{std::move(passed_endpoint)}
{
}
AndroidAnalyticsBackend::~AndroidAnalyticsBackend() = default;
void AndroidAnalyticsBackend::Send(std::string report)