From 72d151eeddf7ac99e50c979dda58319d94ea795c Mon Sep 17 00:00:00 2001 From: David Korth Date: Mon, 16 Jun 2025 21:49:05 -0400 Subject: [PATCH] [qrvthtool] ConfigStore.cpp: #include Needed with gcc-5.4.0 on Ubuntu 16.04, but wasn't needed on my main Gentoo system with gcc-15.1.0 for some reason. --- src/qrvthtool/config/ConfigStore.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/qrvthtool/config/ConfigStore.cpp b/src/qrvthtool/config/ConfigStore.cpp index 1e84ea7..e7e661a 100644 --- a/src/qrvthtool/config/ConfigStore.cpp +++ b/src/qrvthtool/config/ConfigStore.cpp @@ -9,7 +9,7 @@ #include "ConfigStore.hpp" #include "git.h" -// Qt includes. +// Qt includes #include #include #include @@ -23,9 +23,12 @@ #include #include -// Default settings. +// Default settings #include "ConfigDefaults.hpp" +// C includes (C++ namespace) +#include + // C++ STL classes #include #include