From da57bed0774a393ce8ee7429ee1749cf2012ba18 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 12 Aug 2025 21:48:39 +0200 Subject: [PATCH] FIX: Fix missing std::string declaration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit src/slic3r/GUI/DeviceCore/DevLamp.h:22:41: error: ‘string’ in namespace ‘std’ does not name a type 22 | void SetChamberLight(const std::string& status); | ^~~~~~ (cherry picked from commit abd986164785070dcd39204781a0e5a9d40ce216) --- src/slic3r/GUI/DeviceCore/DevLamp.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/slic3r/GUI/DeviceCore/DevLamp.h b/src/slic3r/GUI/DeviceCore/DevLamp.h index 437d7cf896..205563c03d 100644 --- a/src/slic3r/GUI/DeviceCore/DevLamp.h +++ b/src/slic3r/GUI/DeviceCore/DevLamp.h @@ -1,5 +1,7 @@ #pragma once +#include + namespace Slic3r {