use integers instead of size_t for object identifiers.

Need a better solution for semantics (perl used undef, python would have used None).
This commit is contained in:
Joseph Lenox 2018-05-08 23:13:47 -05:00
parent daece6e4c0
commit 179c3969a6

View File

@ -13,7 +13,7 @@ namespace Slic3r { namespace GUI {
class PlaterObject {
public:
std::string name {""};
size_t identifier {0U};
int identifier {0};
std::string input_file {""};
int input_file_obj_idx {-1};