From bb0ec4d3418cda57fd2f09342d6da02b1c75fc9f Mon Sep 17 00:00:00 2001 From: Emily Boudreaux Date: Fri, 7 Mar 2025 10:17:45 -0500 Subject: [PATCH] fix(opatIO): added cstdint header gcc versions 11 and before did not require this header to be manually specified, above that it does. As we move towrds a standardized compiler version I have brought opatIO in line with more modern gcc expectations --- src/opatIO/private/opatIO.cpp | 1 + src/opatIO/public/opatIO.h | 1 + 2 files changed, 2 insertions(+) diff --git a/src/opatIO/private/opatIO.cpp b/src/opatIO/private/opatIO.cpp index 9c3b043..6ae7f37 100644 --- a/src/opatIO/private/opatIO.cpp +++ b/src/opatIO/private/opatIO.cpp @@ -10,6 +10,7 @@ #include #include #include +#include #include "picosha2.h" // Function to check system endianness diff --git a/src/opatIO/public/opatIO.h b/src/opatIO/public/opatIO.h index 5fdad3f..1e816d4 100644 --- a/src/opatIO/public/opatIO.h +++ b/src/opatIO/public/opatIO.h @@ -8,6 +8,7 @@ #include #include #include +#include /** * @brief Structure to hold the header information of an OPAT file.