mirror of https://github.com/CGAL/cgal
fix when CGAL_CDT_3_CAN_USE_CXX20_FORMAT is false
This commit is contained in:
parent
538c2721b3
commit
5e80ca60bb
|
|
@ -48,7 +48,7 @@ decltype(auto) cdt_3_format(std::string_view fmt, const Args&... args) {
|
||||||
|
|
||||||
template <typename... Args>
|
template <typename... Args>
|
||||||
constexpr decltype(auto) cdt_3_format(Args&&...) {
|
constexpr decltype(auto) cdt_3_format(Args&&...) {
|
||||||
return "";
|
return std::string{};
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr bool cdt_3_can_use_cxx20_format() {
|
constexpr bool cdt_3_can_use_cxx20_format() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue