mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-10 00:07:52 -06:00
HintsToPot: Fix compilation on MSVC
This commit is contained in:
parent
9cfe3c6016
commit
c6ac8193e3
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
bool write_to_pot(boost::filesystem::path path, const std::vector<std::pair<std::string, std::string>>& data)
|
bool write_to_pot(boost::filesystem::path path, const std::vector<std::pair<std::string, std::string>>& data)
|
||||||
{
|
{
|
||||||
boost::nowide::ofstream file(std::move(path), std::ios_base::app);
|
boost::nowide::ofstream file(path.string(), std::ios_base::app);
|
||||||
for (const auto& element : data)
|
for (const auto& element : data)
|
||||||
{
|
{
|
||||||
//Example of .pot element
|
//Example of .pot element
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue