git://git.jankratochvil.net
/
lldb.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fixed two problems found by Chris Jefferson: Made operator>> for char consistent...
[lldb.git]
/
libcxx
/
include
/
__hash_table
diff --git
a/libcxx/include/__hash_table
b/libcxx/include/__hash_table
index
4be27f6
..
41dbaa0
100644
(file)
--- a/
libcxx/include/__hash_table
+++ b/
libcxx/include/__hash_table
@@
-29,9
+29,9
@@
template <class _NodePtr>
struct __hash_node_base
{
typedef __hash_node_base __first_node;
- typedef _NodePtr pointer;
+
//
typedef _NodePtr pointer;
-
pointe
r __next_;
+
_NodePt
r __next_;
_LIBCPP_INLINE_VISIBILITY __hash_node_base() : __next_(nullptr) {}
};