Skip to content

Commit 2ec9d7f

Browse files
fix: add integral typdefs to hashing/**
1 parent 549aad5 commit 2ec9d7f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

hashing/md5.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
#include <algorithm> /// Used for std::copy
4242
#include <array> /// Used for std::array
4343
#include <cassert> /// Used for assert
44+
#include <cstdint> /// for integral typedefs
4445
#include <cstring> /// Used for std::memcopy
4546
#include <iostream> /// Used for IO operations
4647
#include <string> /// Used for strings

hashing/sha1.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#include <algorithm> /// For std::copy
3333
#include <array> /// For std::array
3434
#include <cassert> /// For assert
35+
#include <cstdint> /// for integral typedefs
3536
#include <cstring> /// For std::memcopy
3637
#include <iostream> /// For IO operations
3738
#include <string> /// For strings

0 commit comments

Comments
 (0)