From 2fc265ecef4973e0b67dcf8474573900fcb4b311 Mon Sep 17 00:00:00 2001 From: Mark Roszko Date: Wed, 26 Nov 2025 13:34:24 -0500 Subject: [PATCH] Fix more build errors on MSVC. Not sure why it's suddenly a problem but it was tripping up on the vector template expansion already existing out of wx. --- common/git/git_commit_handler.h | 1 + common/widgets/report_severity.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/common/git/git_commit_handler.h b/common/git/git_commit_handler.h index ca5f39a2bf..4751181194 100644 --- a/common/git/git_commit_handler.h +++ b/common/git/git_commit_handler.h @@ -32,6 +32,7 @@ #include #include +#include // for MSVC to see std::vector is exported from wx #include class LIBGIT_BACKEND; diff --git a/common/widgets/report_severity.cpp b/common/widgets/report_severity.cpp index bee2c41566..ae2823e8c1 100644 --- a/common/widgets/report_severity.cpp +++ b/common/widgets/report_severity.cpp @@ -21,6 +21,7 @@ #include #include #include +#include // for MSVC to see std::vector is exported from wx wxString formatSeverities( int aSeverities )