Skip to content

Commit

Permalink
Merge branch 'main' into feature_clear_travelTimes
Browse files Browse the repository at this point in the history
  • Loading branch information
Grufoony committed Mar 11, 2024
2 parents f1155c8 + 8424910 commit 4ac19df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ BinPackParameters: false
AlwaysBreakTemplateDeclarations: Yes
ReflowComments: false
BinPackArguments: false
BinPackParameters: false
DerivePointerAlignment: false
PointerAlignment: Left
ReferenceAlignment: Left
3 changes: 2 additions & 1 deletion src/dsm/headers/Graph.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,8 @@ namespace dsm {
Size n;
file >> n;
if (n < m_nodes.size()) {
throw std::invalid_argument(buildLog("Number of node cordinates in file is too small."));
throw std::invalid_argument(
buildLog("Number of node cordinates in file is too small."));
}
double lat, lon;
for (Size i{0}; i < n; ++i) {
Expand Down

0 comments on commit 4ac19df

Please sign in to comment.