Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorДобрый Ээх <bukharaev@gmail.com>2017-03-06 15:28:19 +0300
committerSergey Yershov <syershov@maps.me>2017-03-06 18:13:23 +0300
commitb7bc212145aa32708d32d80e5aedd84a2ba6a065 (patch)
treec4007d9205d44fd54f87e9c8757bc46b843f7839 /tracking/tracking_tests
parent6c388e67dbf451ca5010e294e4c0f61db9fa7316 (diff)
[tracking] Add traffic info to tracking reporter
Diffstat (limited to 'tracking/tracking_tests')
-rw-r--r--tracking/tracking_tests/reporter_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tracking/tracking_tests/reporter_test.cpp b/tracking/tracking_tests/reporter_test.cpp
index f636a72a97..d8db6ae771 100644
--- a/tracking/tracking_tests/reporter_test.cpp
+++ b/tracking/tracking_tests/reporter_test.cpp
@@ -27,7 +27,7 @@ void TransferLocation(Reporter & reporter, TestSocket & testSocket, double times
gpsInfo.m_latitude = latidute;
gpsInfo.m_longitude = longtitude;
gpsInfo.m_horizontalAccuracy = 1.0;
- reporter.AddLocation(gpsInfo);
+ reporter.AddLocation(gpsInfo, traffic::SpeedGroup::Unknown);
using Packet = tracking::Protocol::PacketType;
vector<uint8_t> buffer;