fix when CGAL_CDT_3_CAN_USE_CXX20_FORMAT is false

This commit is contained in:
Laurent Rineau 2025-09-23 21:37:55 +02:00
parent 538c2721b3
commit 5e80ca60bb
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ decltype(auto) cdt_3_format(std::string_view fmt, const Args&... args) {
template <typename... Args>
constexpr decltype(auto) cdt_3_format(Args&&...) {
return "";
return std::string{};
}
constexpr bool cdt_3_can_use_cxx20_format() {