mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-06-02 05:08:28 +08:00
Fix build
This commit is contained in:
parent
d59fc1939b
commit
6175eda867
@ -270,9 +270,9 @@ namespace client
|
|||||||
{
|
{
|
||||||
std::string out;
|
std::string out;
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case TYPE_BOOL: out = boost::to_string(data.b); break;
|
case TYPE_BOOL: out = std::to_string(data.b); break;
|
||||||
case TYPE_INT: out = boost::to_string(data.i); break;
|
case TYPE_INT: out = std::to_string(data.i); break;
|
||||||
case TYPE_DOUBLE: out = boost::to_string(data.d); break;
|
case TYPE_DOUBLE: out = std::to_string(data.d); break;
|
||||||
case TYPE_STRING: out = *data.s; break;
|
case TYPE_STRING: out = *data.s; break;
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
#include <set>
|
#include <set>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <map>
|
||||||
|
|
||||||
#include "libslic3r.h"
|
#include "libslic3r.h"
|
||||||
namespace Slic3r
|
namespace Slic3r
|
||||||
|
Loading…
x
Reference in New Issue
Block a user