latest release (11.1.1), MSC 19.42.34433 (VS2022 with latest updates) complains:
fmt\include\fmt\base.h(1538) : warning C4702: unreachable code
fmt\include\fmt\base.h(1542) : warning C4702: unreachable code
fmt\include\fmt\format.h(3425) : warning C4702: unreachable code
enable/disable FMT_NORETURN resp. [[noreturn]] has no effect.
if (end - fill_end <= 0) {
report_error("invalid format specifier");
return begin;
}
Do other compiler complain if return begin; is removed?
latest release (11.1.1), MSC 19.42.34433 (VS2022 with latest updates) complains:
enable/disable FMT_NORETURN resp. [[noreturn]] has no effect.
Do other compiler complain if
return begin;is removed?