Skip to content

Commit

Permalink
Fix a scope error
Browse files Browse the repository at this point in the history
  • Loading branch information
stcui007 committed Aug 23, 2024
1 parent d811426 commit 55d9934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/geopackage/read.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ std::shared_ptr<geojson::FeatureCollection> ngen::geopackage::read(

#ifndef NGEN_QUIET
// output debug info on what is read exactly
logging.debug((std::string("Reading ") + std::to_string(layer_feature_count) + " features from layer " + layer + " using ID column `" + id_column + "`").c_str());
logging::debug((std::string("Reading ") + std::to_string(layer_feature_count) + " features from layer " + layer + " using ID column `" + id_column + "`").c_str());
if (!ids.empty()) {
logging::formatting((std::string(" (id subset:")).c_str());
for (auto& id : ids) {
Expand Down

0 comments on commit 55d9934

Please sign in to comment.