Skip to content

Commit

Permalink
fix #14784
Browse files Browse the repository at this point in the history
  • Loading branch information
namdre committed Apr 29, 2024
1 parent 349665b commit c861cc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/od/ODDistrict.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ ODDistrict::~ODDistrict() {}

void
ODDistrict::addSource(const std::string& id, double weight) {
mySources.add(id, weight);
mySources.add(id, weight, false);
}


void
ODDistrict::addSink(const std::string& id, double weight) {
mySinks.add(id, weight);
mySinks.add(id, weight, false);
}


Expand Down

0 comments on commit c861cc8

Please sign in to comment.