From ce819c70ea91ec2c55590cd92665ddb85761f616 Mon Sep 17 00:00:00 2001 From: VladiMihaylenko Date: Mon, 30 Jul 2018 12:23:04 +0300 Subject: [PATCH] Fixed linux build --- ugc/CMakeLists.txt | 1 + ugc/storage.cpp | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ugc/CMakeLists.txt b/ugc/CMakeLists.txt index 1e2093cdec..7bbab407e1 100644 --- a/ugc/CMakeLists.txt +++ b/ugc/CMakeLists.txt @@ -2,6 +2,7 @@ project(ugc) include_directories( ${OMIM_ROOT}/3party/jansson/src + ${OMIM_ROOT}/Alohalytics/src ) set( diff --git a/ugc/storage.cpp b/ugc/storage.cpp index 6b0f7ef2f7..6d9317a0d6 100644 --- a/ugc/storage.cpp +++ b/ugc/storage.cpp @@ -20,6 +20,7 @@ #include "base/stl_helpers.hpp" #include +#include #include #include "3party/Alohalytics/src/alohalytics.h" @@ -216,7 +217,8 @@ void Storage::Load() if (data.empty()) { ASSERT(false, ()); - alohalytics::Stats::Instance().LogEvent("UGC_File_error", {{"error", "empty index file"}}); + map const stat = {{"error", "empty index file"}}; + alohalytics::Stats::Instance().LogEvent("UGC_File_error", stat); return; }