From 3895bfbbf4252b6663e54c8124b7c93e79ac312a Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Mon, 6 Jul 2015 18:57:46 +0300 Subject: [PATCH] [alohalytics] Minor type renaming. --- 3party/Alohalytics/server/statistics_receiver.h | 2 +- 3party/Alohalytics/src/messages_queue.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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