diff --git a/geospatial/src/Dem.cc b/geospatial/src/Dem.cc index b634a82a..40ff2e64 100644 --- a/geospatial/src/Dem.cc +++ b/geospatial/src/Dem.cc @@ -138,7 +138,8 @@ int Dem::Load(const std::string &_filename) auto OpenInGdal = [this](const std::string& name) -> bool { GDALDatasetH handle = GDALOpen(name.c_str(), GA_ReadOnly); - if (handle) { + if (handle) + { this->dataPtr->dataSet = GDALDataset::FromHandle(handle); }