From 2ec9d7fe4997a12402b241f07b782bff78836679 Mon Sep 17 00:00:00 2001 From: realstealthninja <68815218+realstealthninja@users.noreply.github.com> Date: Sat, 31 Aug 2024 11:27:08 +0530 Subject: [PATCH] fix: add integral typdefs to hashing/** --- hashing/md5.cpp | 1 + hashing/sha1.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/hashing/md5.cpp b/hashing/md5.cpp index aad757310..2a0f289f3 100644 --- a/hashing/md5.cpp +++ b/hashing/md5.cpp @@ -41,6 +41,7 @@ #include /// Used for std::copy #include /// Used for std::array #include /// Used for assert +#include /// for integral typedefs #include /// Used for std::memcopy #include /// Used for IO operations #include /// Used for strings diff --git a/hashing/sha1.cpp b/hashing/sha1.cpp index 106da8272..5b55e58c6 100644 --- a/hashing/sha1.cpp +++ b/hashing/sha1.cpp @@ -32,6 +32,7 @@ #include /// For std::copy #include /// For std::array #include /// For assert +#include /// for integral typedefs #include /// For std::memcopy #include /// For IO operations #include /// For strings