made _last_obj_copy a std::pair to hold onto validity information as well as the point location.

This commit is contained in:
Joseph Lenox 2018-07-18 22:30:50 -05:00
parent 7c0b807518
commit ec7d3803d9

View File

@ -52,7 +52,7 @@ private:
std::map<double, bool> _skirt_done {};
bool _brim_done {false};
bool _second_layer_things_done {false};
std::string _last_obj_copy {""};
std::pair<Point, bool> _last_obj_copy {std::pair<Point, bool>(Point(), false)};
bool _autospeed {false};
void _print_first_layer_temperature(bool wait);