FIX: Fix missing std::string declaration

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)
This commit is contained in:
Bastien Nocera 2025-08-12 21:48:39 +02:00 committed by Noisyfox
parent 174346e113
commit da57bed077

View file

@ -1,5 +1,7 @@
#pragma once
#include <string>
namespace Slic3r
{