Pārlūkot izejas kodu

parser-inc: add <memory> include to unordered_map/set for allocator

rdb 7 gadi atpakaļ
vecāks
revīzija
e673937384

+ 2 - 1
dtool/src/parser-inc/unordered_map

@@ -24,9 +24,10 @@
 #include <pair>
 #include <initializer_list>
 #include <functional>
+#include <memory>
 
 namespace std {
- 
+
   template <class Key,
     class T,
     class Hash = hash<Key>,

+ 2 - 1
dtool/src/parser-inc/unordered_set

@@ -24,6 +24,7 @@
 #include <pair>
 #include <initializer_list>
 #include <functional>
+#include <memory>
 
 namespace std {
 
@@ -46,7 +47,7 @@ namespace std {
     typedef typename allocator_type::const_reference  const_reference;
     typedef size_t size_type;
     typedef std::ptrdiff_t difference_type;
-   
+
     class iterator;
     class const_iterator;
     class local_iterator;