From 4394527a5cd51a723129f641137f64bc1cf4a4d9 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 12 Aug 2025 21:04:25 +0200 Subject: [PATCH] FIX: Fix missing std:: declarations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In file included from /run/build/BambuStudio/src/slic3r/GUI/DeviceCore/DevPrintTaskInfo.cpp:1: src/slic3r/GUI/DeviceCore/DevPrintTaskInfo.h:15:10: error: ‘string’ in namespace ‘std’ does not name a type 15 | std::string content; | ^~~~~~ src/slic3r/GUI/DeviceCore/DevPrintTaskInfo.h:16:10: error: ‘vector’ in namespace ‘std’ does not name a template type 16 | std::vector image_url_paths; | ^~~~~~ (cherry picked from commit 1e0ae7d3f8b47d1f8c1bb6b05be54d627bcc95f0) --- src/slic3r/GUI/DeviceCore/DevPrintTaskInfo.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/slic3r/GUI/DeviceCore/DevPrintTaskInfo.h b/src/slic3r/GUI/DeviceCore/DevPrintTaskInfo.h index 0dba522deb..a244692138 100644 --- a/src/slic3r/GUI/DeviceCore/DevPrintTaskInfo.h +++ b/src/slic3r/GUI/DeviceCore/DevPrintTaskInfo.h @@ -1,5 +1,8 @@ #pragma once +#include +#include + // TODO classes to handle dev print task management and ratings namespace Slic3r