Skip to content

Commit 6d439c0

Browse files
committed
fix: add missing <cstdint> header
1 parent 54e1ba5 commit 6d439c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

include/ext/memory/tagged_pointer.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
#ifndef EXT_MEMORY_TAGGED_POINTER_HEADER
33
#define EXT_MEMORY_TAGGED_POINTER_HEADER
44

5-
#include <cassert>
65
#include <ext/memory/align.hpp>
6+
7+
#include <cassert>
8+
#include <cstdint>
79
#include <memory>
810

911
namespace ext { namespace memory {

0 commit comments

Comments
 (0)