From 5edaf2cf102334ea34a74e1aa4e04fa9bc3dfe97 Mon Sep 17 00:00:00 2001 From: Mark Yu Date: Sun, 14 Sep 2025 05:18:44 -0400 Subject: [PATCH] Use class instead of struct PR #23255. --- src/app/cmdoptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/cmdoptions.cpp b/src/app/cmdoptions.cpp index 677ac03f6..84f50e988 100644 --- a/src/app/cmdoptions.cpp +++ b/src/app/cmdoptions.cpp @@ -137,7 +137,7 @@ namespace }; // Option with string value. May not have a shortcut - struct StringOption : protected Option + class StringOption : protected Option { public: explicit constexpr StringOption(const QStringView name)