From 06cc63ee86d82b3248d9e1ac8462163cb55700fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Sat, 31 Aug 2024 17:50:02 +0200 Subject: [PATCH] Include cstring explicitly --- image_processing/resize_image.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/image_processing/resize_image.cpp b/image_processing/resize_image.cpp index 787feda9..3f9d858d 100644 --- a/image_processing/resize_image.cpp +++ b/image_processing/resize_image.cpp @@ -4,6 +4,7 @@ #include #include #include +#include QPixmap scalePixmapBicubic(const QPixmap &pixmap, int width, int height); QPixmap scalePixmapLanczos(const QPixmap &pixmap, int width, int height);