mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-15 10:56:06 +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) {
|
void _Log::raw(const std::string& message) {
|
||||||
this->raw() << message << std::endl;
|
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() {
|
std::ostream& _Log::raw() {
|
||||||
return _out;
|
return _out;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user