mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-16 19:28:14 -06:00
and again a fix on Windows
This commit is contained in:
parent
6e2a5419cc
commit
0d2c31d0e4
1 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ std::string get_current_thread_name()
|
|||
{
|
||||
wchar_t *ptr = nullptr;
|
||||
::GetThreadDescription(::GetCurrentThread(), &ptr);
|
||||
return std::string((ptr == nullptr) ? "" : ptr);
|
||||
return (ptr == nullptr) ? std::string() : boost::nowide::narrow(ptr);
|
||||
}
|
||||
|
||||
#else // _WIN32
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue