blob: 548ce7aa73f5a15fc9e0291da620cce46bc58fc5 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# include <benoit/err/clsfil.hh>
# include <benoit/print.hh>
# include <fmt/core.h>
# include <string>
using namespace std::literals::string_literals;
void benoit::err::clsfil(std::string const fil) noexcept {
benoit::print(fmt::format("Unable to close file “{}”."s,fil),true);
}
|