From 39310b14d6c2ca643928f8b714e4cba339921bd0 Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Tue, 29 Mar 2022 11:18:25 +0200 Subject: [PATCH] Fixed compiler warnings --- src/libslic3r/PrintBase.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/PrintBase.hpp b/src/libslic3r/PrintBase.hpp index fbadccfb13..13796abbad 100644 --- a/src/libslic3r/PrintBase.hpp +++ b/src/libslic3r/PrintBase.hpp @@ -117,7 +117,7 @@ public: } void enable_all_unguarded(bool enable) { - for (int istep = 0; istep < COUNT; ++ istep) + for (size_t istep = 0; istep < COUNT; ++ istep) m_state[istep].enabled = enable; }