N3644 support for <unordered_set> and <unordered_map>

llvm-svn: 187915
diff --git a/libcxx/include/__hash_table b/libcxx/include/__hash_table
index 7b0fc41..6157fcd 100644
--- a/libcxx/include/__hash_table
+++ b/libcxx/include/__hash_table
@@ -112,6 +112,9 @@
                                                          pointer;
 
     _LIBCPP_INLINE_VISIBILITY __hash_iterator() _NOEXCEPT
+#if _LIBCPP_STD_VER > 11
+    : __node_(nullptr)
+#endif
     {
 #if _LIBCPP_DEBUG_LEVEL >= 2
         __get_db()->__insert_i(this);
@@ -248,6 +251,9 @@
     typedef __hash_iterator<__non_const_node_pointer> __non_const_iterator;
 
     _LIBCPP_INLINE_VISIBILITY __hash_const_iterator() _NOEXCEPT
+#if _LIBCPP_STD_VER > 11
+    : __node_(nullptr)
+#endif
     {
 #if _LIBCPP_DEBUG_LEVEL >= 2
         __get_db()->__insert_i(this);