diff --git a/apps/roofer-app/config.hpp b/apps/roofer-app/config.hpp index 93107f2b..5f5d99b3 100644 --- a/apps/roofer-app/config.hpp +++ b/apps/roofer-app/config.hpp @@ -157,7 +157,7 @@ struct fmt::formatter { template constexpr auto format(roofer::ReconstructionConfig const& cfg, Context& ctx) const { - return format_to( + return fmt::format_to( ctx.out(), "ReconstructionConfig(complexity_factor={}, clip_ground={}, lod={}, " "lod13_step_height={}, floor_elevation={}, " @@ -183,7 +183,7 @@ struct fmt::formatter { if (cfg.region_of_interest.has_value()) { region_of_interest = cfg.region_of_interest.value().wkt(); } - return format_to( + return fmt::format_to( ctx.out(), "RooferConfig(source_footprints={}, id_attribute={}, " "force_lod11_attribute={}, yoc_attribute={}, layer_name={}, " diff --git a/apps/roofer-app/roofer-app.cpp b/apps/roofer-app/roofer-app.cpp index 1ebf372b..3b2a16fa 100644 --- a/apps/roofer-app/roofer-app.cpp +++ b/apps/roofer-app/roofer-app.cpp @@ -229,7 +229,7 @@ struct fmt::formatter { if (tile.proj_helper) { data_offset_has_value = tile.proj_helper->data_offset.has_value(); } - return format_to( + return fmt::format_to( ctx.out(), "BuildingTile(id={}, buildings.size={}, attributes.has_attributes={}, " "buildings_progresses={}, buildings_cnt={}, "