Imporive support for Map alignment and alignment retrieval

See merge request oss/rotgen!15
This commit is contained in:
Joel Falcou 2025-08-15 18:00:43 +02:00
parent 73cf7c832b
commit 84626f6896
12 changed files with 1345 additions and 48 deletions

View file

@ -13,7 +13,7 @@ namespace rotgen::detail
{
ROTGEN_EXPORT std::ostream& dynamic_info(std::ostream& os)
{
if constexpr(rotgen::is_forcing_dynamic_status) return os << "[ROTGEN] - Fully Dynamic mode" << std::endl;
else return os << "[ROTGEN] - Flexible mode with" << std::endl;
if constexpr(rotgen::is_forcing_dynamic_status) return os << "[ROTGEN] - Fully Dynamic mode with:" << std::endl;
else return os << "[ROTGEN] - Flexible mode with:" << std::endl;
}
}