Skip to content

Commit

Permalink
Mod: DataSet constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
boyinchen committed Apr 4, 2020
1 parent ec6ea65 commit 25e42ee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Library/DataSet/DataSet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ void bf::DataSet::SetDataPath(const std::string &s)
path = s;
}

bf::DataSet::DataSet(void)
bf::DataSet::DataSet(void):
bIsAirportsInitialized(false),
bIsFixesInitialized(false),
bIsRoutesInitialized(false)
{
graph = new Graph;
is = new InternalStruct;
Expand Down

0 comments on commit 25e42ee

Please sign in to comment.