Fix build
This commit is contained in:
parent
d59fc1939b
commit
6175eda867
@ -270,9 +270,9 @@ namespace client
|
||||
{
|
||||
std::string out;
|
||||
switch (type) {
|
||||
case TYPE_BOOL: out = boost::to_string(data.b); break;
|
||||
case TYPE_INT: out = boost::to_string(data.i); break;
|
||||
case TYPE_DOUBLE: out = boost::to_string(data.d); break;
|
||||
case TYPE_BOOL: out = std::to_string(data.b); break;
|
||||
case TYPE_INT: out = std::to_string(data.i); break;
|
||||
case TYPE_DOUBLE: out = std::to_string(data.d); break;
|
||||
case TYPE_STRING: out = *data.s; break;
|
||||
default: break;
|
||||
}
|
||||
|
@ -5,6 +5,7 @@
|
||||
|
||||
#include <set>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
||||
#include "libslic3r.h"
|
||||
namespace Slic3r
|
||||
|
Loading…
Reference in New Issue
Block a user