mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 11:23:42 +00:00
Fix build
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user