Android: Mark s_android_send_report as static

Fixes a compiler warning.
This commit is contained in:
JosJuice 2022-01-06 12:20:09 +01:00
parent 7bd14c5d9f
commit 804f78e0e4
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)