From 0147b3513871b1a7adc155421d4a87e7df0f8b26 Mon Sep 17 00:00:00 2001 From: colawithsauce Date: Sat, 9 Aug 2025 13:02:51 +0800 Subject: [PATCH] Fix Linux compilation by adding missing cstdint include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add missing cstdint header to xmlMatchedTagsHighlighter.h for Linux compatibility. While the code compiles fine in Qt Creator, it fails on Linux command line builds without the explicit cstdint include. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/qscint/src/xmlMatchedTagsHighlighter.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qscint/src/xmlMatchedTagsHighlighter.h b/src/qscint/src/xmlMatchedTagsHighlighter.h index fec52116..17f3d4a9 100755 --- a/src/qscint/src/xmlMatchedTagsHighlighter.h +++ b/src/qscint/src/xmlMatchedTagsHighlighter.h @@ -20,6 +20,7 @@ //#include #include #include +#include class QsciScintilla;