projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a2b5b58
)
[libc++][NFC] Add missing include to ext/__hash
author
Louis Dionne
<ldionne.2@gmail.com>
Fri, 25 Nov 2022 15:25:57 +0000
(10:25 -0500)
committer
Louis Dionne
<ldionne.2@gmail.com>
Fri, 25 Nov 2022 16:49:01 +0000
(11:49 -0500)
Note that we use <stddef.h> instead of <cstddef> because we're
using size_t (not std::size_t) and we're outside of namespace std.
Differential Revision: https://reviews.llvm.org/D138716
libcxx/include/ext/__hash
patch
|
blob
|
history
diff --git
a/libcxx/include/ext/__hash
b/libcxx/include/ext/__hash
index
0e6c2cc
..
880d0ee
100644
(file)
--- a/
libcxx/include/ext/__hash
+++ b/
libcxx/include/ext/__hash
@@
-14,6
+14,7
@@
#include <__config>
#include <cstring>
+#include <stddef.h>
#include <string>
namespace __gnu_cxx {