strip UTF-8 BOM from PrintConfig.cpp, Print.cpp, Tab.cpp

The Linux CI build fails at the encoding-check step:
  "Source file is valid UTF-8 but contains a BOM mark"
These three files picked up a UTF-8 BOM (EF BB BF) during Windows-side
merges/edits. Removed the BOM (first 3 bytes only); file contents and line
endings are otherwise unchanged.
This commit is contained in:
ExPikaPaka
2026-07-10 08:12:01 +02:00
parent 5f15ead5ee
commit d47b57af8a
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
#include "Config.hpp"
#include "Config.hpp"
#include "Exception.hpp"
#include "Print.hpp"
#include "BoundingBox.hpp"

View File

@@ -1,4 +1,4 @@
#include "PrintConfig.hpp"
#include "PrintConfig.hpp"
#include "PrintConfigConstants.hpp"
#include "ClipperUtils.hpp"
#include "Config.hpp"

View File

@@ -1,4 +1,4 @@
// #include "libslic3r/GCodeSender.hpp"
// #include "libslic3r/GCodeSender.hpp"
//#include "slic3r/Utils/Serial.hpp"
#include "Tab.hpp"
#include "PresetHints.hpp"