From 8795f7dba86d0a7c08946be0d61513673c3d297e Mon Sep 17 00:00:00 2001 From: bubnikv Date: Wed, 18 Dec 2019 10:17:47 +0100 Subject: [PATCH] Trying to fix a compilation issue on Linux / OSX --- src/slic3r/GUI/wxExtensions.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/wxExtensions.hpp b/src/slic3r/GUI/wxExtensions.hpp index 9b7de93cd..0c43be3a0 100644 --- a/src/slic3r/GUI/wxExtensions.hpp +++ b/src/slic3r/GUI/wxExtensions.hpp @@ -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; } - int tick; + int tick = 0; std::string gcode = Slic3r::ColorChangeCode; int extruder = 0; std::string color;