Skip to content

Commit

Permalink
ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
pa-senger committed May 30, 2024
1 parent f623ec2 commit 0cf129f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ std::vector<double> Config::bbox_coords() const {
std::string delimiter = ",";
size_t pos = 0;
std::string token;
std::string bbox = M_bbox; // Create a local copy of M_bbox
std::string bbox = M_bbox; // Create a local copy of M_bbox.
while ((pos = bbox.find(delimiter)) != std::string::npos) {
token = bbox.substr(0, pos);
coords.push_back(std::stod(token));
Expand Down

0 comments on commit 0cf129f

Please sign in to comment.