forked from organicmaps/organicmaps
[build] Fixed linux build.
This commit is contained in:
parent
5afb5f1d1e
commit
30b9a6ed2c
1 changed files with 2 additions and 2 deletions
|
@ -261,7 +261,7 @@ void GraphData::AppendTo(GraphData const & rhs)
|
|||
|
||||
void GraphData::Clear()
|
||||
{
|
||||
ClearVisitor const v;
|
||||
ClearVisitor const v{};
|
||||
Visit(v);
|
||||
}
|
||||
|
||||
|
@ -277,7 +277,7 @@ bool GraphData::IsValid() const
|
|||
|
||||
void GraphData::Sort()
|
||||
{
|
||||
SortVisitor const v;
|
||||
SortVisitor const v{};
|
||||
Visit(v);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue