mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-14 00:45:54 +08:00
Fixed useage of boost::locale for raw()
This commit is contained in:
parent
d12885d042
commit
1802193c5b
@ -110,7 +110,7 @@ std::ostream& _Log::debug(const std::string& topic) {
|
||||
void _Log::raw(const std::string& message) {
|
||||
this->raw() << message << std::endl;
|
||||
}
|
||||
void _Log::raw(const std::wstring& message) { this->raw(this->converter.to_bytes(message)); }
|
||||
void _Log::raw(const std::wstring& message) { this->raw(boost::locale::conv::utf_to_utf<char>(message)); }
|
||||
|
||||
std::ostream& _Log::raw() {
|
||||
return _out;
|
||||
|
Loading…
x
Reference in New Issue
Block a user