Merge pull request #21 from tboudreaux/main

Added Missing cstdint header to opatIO
This commit is contained in:
2025-03-07 10:20:21 -05:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -10,6 +10,7 @@
#include <cmath> #include <cmath>
#include <limits> #include <limits>
#include <deque> #include <deque>
#include <cstdint>
#include "picosha2.h" #include "picosha2.h"
// Function to check system endianness // Function to check system endianness

View File

@@ -8,6 +8,7 @@
#include <deque> #include <deque>
#include <map> #include <map>
#include <utility> #include <utility>
#include <cstdint>
/** /**
* @brief Structure to hold the header information of an OPAT file. * @brief Structure to hold the header information of an OPAT file.