Hello,
I came across the following bug in
ParaView-5.10.1/VTK/IO/Image/vtkSEPReader.h
ParaView-5.10.1/VTK/IO/PIO/PIOData.h
ParaView-5.10.1/VTK/Rendering/Matplotlib/vtkMatplotlibMathTextUtilities.h
ParaView-5.10.1/VTK/IO/Image/vtkSEPReader.h:34:12: error: use of enum 'EndiannessType' without previous declaration
in all cases adding a line of the form:
#include <cstdint>
in the above header files solved the problem. It comes about because in gcc13 the standard library does not include some headers, which therefore
need to be included by the code usind the standard library functionality, see Header dependency changes
George