diff --git a/3party/Alohalytics/server/statistics_receiver.h b/3party/Alohalytics/server/statistics_receiver.h index 5d80034a3f..c5b1453ae9 100644 --- a/3party/Alohalytics/server/statistics_receiver.h +++ b/3party/Alohalytics/server/statistics_receiver.h @@ -36,7 +36,7 @@ namespace alohalytics { class StatisticsReceiver { std::string storage_directory_; - UnlimitedFileQueue file_storage_queue_; + TUnlimitedFileQueue file_storage_queue_; public: explicit StatisticsReceiver(const std::string & storage_directory) : storage_directory_(storage_directory) { diff --git a/3party/Alohalytics/src/messages_queue.h b/3party/Alohalytics/src/messages_queue.h index 54fa628552..f28a3b99b3 100644 --- a/3party/Alohalytics/src/messages_queue.h +++ b/3party/Alohalytics/src/messages_queue.h @@ -273,7 +273,7 @@ class MessagesQueue final { typedef MessagesQueue<1024 * 100> THundredKilobytesFileQueue; // TODO(AlexZ): Remove unnecessary file size checks from this specialization. -typedef MessagesQueue::max()> UnlimitedFileQueue; +typedef MessagesQueue::max()> TUnlimitedFileQueue; } // namespace alohalytics