Commit f164e4c7 authored by Victor Zverovich's avatar Victor Zverovich

Remove old bcc-related comments

parent c57029c1
...@@ -382,7 +382,7 @@ FMT_FUNC void format_system_error( ...@@ -382,7 +382,7 @@ FMT_FUNC void format_system_error(
buf.resize(buf.size() * 2); buf.resize(buf.size() * 2);
} }
} FMT_CATCH(...) {} } FMT_CATCH(...) {}
fmt::format_error_code(out, error_code, message); // 'fmt::' is for bcc32. format_error_code(out, error_code, message);
} }
template <typename Char> template <typename Char>
...@@ -396,14 +396,12 @@ FMT_FUNC void internal::error_handler::on_error(const char *message) { ...@@ -396,14 +396,12 @@ FMT_FUNC void internal::error_handler::on_error(const char *message) {
FMT_FUNC void report_system_error( FMT_FUNC void report_system_error(
int error_code, fmt::string_view message) FMT_NOEXCEPT { int error_code, fmt::string_view message) FMT_NOEXCEPT {
// 'fmt::' is for bcc32.
report_error(format_system_error, error_code, message); report_error(format_system_error, error_code, message);
} }
#if FMT_USE_WINDOWS_H #if FMT_USE_WINDOWS_H
FMT_FUNC void report_windows_error( FMT_FUNC void report_windows_error(
int error_code, fmt::string_view message) FMT_NOEXCEPT { int error_code, fmt::string_view message) FMT_NOEXCEPT {
// 'fmt::' is for bcc32.
report_error(internal::format_windows_error, error_code, message); report_error(internal::format_windows_error, error_code, message);
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment