From: Laurent Rineau Date: Tue, 17 Jan 2023 15:18:53 +0000 (+0100) Subject: Add #include to compile with gcc13 X-Git-Tag: archive/raspbian/9.1.0+really9.1.0+dfsg2-8+rpi1^2^2~15 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8c73b8dda660e24e5255887ca423ac421e7e7653;p=vtk9.git Add #include to compile with gcc13 From 1233ceec268d5366c66f5e79786ec784042b591b Mon Sep 17 00:00:00 2001 Origin: upstream, https://gitlab.kitware.com/vtk/vtk/-/commit/1233ceec268d5366c66f5e79786ec784042b591b The `vtkSEPReader` was introduced by MRs !4909 (from my former collaborator Maxime) and !4938. Then it was highly modified by !7516. The later MR is the one that introduced the uses of `std::uint8_t` and `std::uint32_t`. Those types needs the inclusion of ``. Gbp-Pq: Name gcc-13.patch --- diff --git a/IO/Image/vtkSEPReader.h b/IO/Image/vtkSEPReader.h index 94600a8a..db1b840a 100644 --- a/IO/Image/vtkSEPReader.h +++ b/IO/Image/vtkSEPReader.h @@ -25,8 +25,9 @@ #include "vtkImageAlgorithm.h" #include "vtkNew.h" // for ivars -#include // for std::array -#include // for std::string +#include // for std::array +#include // for std::uint8_t and std::uint32_t +#include // for std::string namespace details {