From e9c8391fd5901f0f84ecc44cdd1c6408669b4d8d Mon Sep 17 00:00:00 2001 From: Leonard Hecker Date: Fri, 11 Aug 2023 15:17:18 +0200 Subject: [PATCH] Fix compilation with Visual Studio 17.8 (#15819) This broke with https://github.com/microsoft/STL/pull/3721 It's a minor issue and a minor fix. :) --- src/buffer/out/Row.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/buffer/out/Row.cpp b/src/buffer/out/Row.cpp index b31976b8467..760f8cf501f 100644 --- a/src/buffer/out/Row.cpp +++ b/src/buffer/out/Row.cpp @@ -4,6 +4,7 @@ #include "precomp.h" #include "Row.hpp" +#include #include #include "textBuffer.hpp"