Trying to fix a compilation issue on Linux / OSX

This commit is contained in:
bubnikv 2019-12-18 10:17:47 +01:00
parent e2f91cacab
commit 8795f7dba8

View file

@ -962,7 +962,7 @@ private:
bool operator<(const TICK_CODE& other) const { return other.tick > this->tick; } bool operator<(const TICK_CODE& other) const { return other.tick > this->tick; }
bool operator>(const TICK_CODE& other) const { return other.tick < this->tick; } bool operator>(const TICK_CODE& other) const { return other.tick < this->tick; }
int tick; int tick = 0;
std::string gcode = Slic3r::ColorChangeCode; std::string gcode = Slic3r::ColorChangeCode;
int extruder = 0; int extruder = 0;
std::string color; std::string color;