diff options
author | luigi1111 <luigi1111w@gmail.com> | 2024-02-24 10:06:57 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2024-02-24 10:06:57 -0500 |
commit | f2493d913972d80208cc5741996c254dd546c2fc (patch) | |
tree | 642fe03d8333996f0399b81b1ad53c8f71e9a596 | |
parent | Merge pull request #9138 (diff) | |
parent | Add <cstdint> to aligned test (diff) | |
download | monero-f2493d913972d80208cc5741996c254dd546c2fc.tar.xz |
Merge pull request #9143
b1c9a80 Add <cstdint> to aligned test (Lee *!* Clagett)
-rw-r--r-- | tests/unit_tests/aligned.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit_tests/aligned.cpp b/tests/unit_tests/aligned.cpp index b64b03c5a..9ae43aeb3 100644 --- a/tests/unit_tests/aligned.cpp +++ b/tests/unit_tests/aligned.cpp @@ -29,6 +29,7 @@ #include "gtest/gtest.h" +#include <cstdint> #include "common/aligned.h" TEST(aligned, large_null) { ASSERT_TRUE(aligned_malloc((size_t)-1, 1) == NULL); } |