forked from organicmaps/organicmaps
Fixed note
This commit is contained in:
parent
e1c641c965
commit
164d2f18e7
1 changed files with 1 additions and 4 deletions
|
@ -4,8 +4,6 @@
|
|||
|
||||
#include "platform/settings.hpp"
|
||||
|
||||
#include "std/algorithm.hpp"
|
||||
|
||||
namespace
|
||||
{
|
||||
|
||||
|
@ -22,8 +20,7 @@ double constexpr kClosePointDistanceMeters = 15;
|
|||
void GpsTrackNullFilter::Process(vector<location::GpsInfo> const & inPoints,
|
||||
vector<location::GpsTrackInfo> & outPoints)
|
||||
{
|
||||
outPoints.reserve(inPoints.size());
|
||||
copy(inPoints.begin(), inPoints.end(), back_inserter(outPoints));
|
||||
outPoints.insert(outPoints.end(), inPoints.begin(), inPoints.end());
|
||||
}
|
||||
|
||||
void GpsTrackFilter::StoreMinHorizontalAccuracy(double value)
|
||||
|
|
Loading…
Add table
Reference in a new issue