diff options
author | Hongtae Kim <[email protected]> | 2022-07-06 01:08:37 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2022-07-05 09:08:37 -0700 |
commit | 0474a3678e3a47924d49beb9d61b6cd4fbb39b34 (patch) | |
tree | 00d4b079b9e13c3b0c48ec7842d8833b9204c5c6 | |
parent | dc83d99c95a42c960150ddeee06c124134b52208 (diff) |
Added missing header file for std::assume_aligned. (C++20) (#724)
-rw-r--r-- | common/opthelpers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/opthelpers.h b/common/opthelpers.h index e46c0f3a..f110303e 100644 --- a/common/opthelpers.h +++ b/common/opthelpers.h @@ -3,7 +3,7 @@ #include <cstdint> #include <utility> - +#include <memory> #ifdef __has_builtin #define HAS_BUILTIN __has_builtin |