We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 811bc69 commit f0af9f5Copy full SHA for f0af9f5
hphp/runtime/ext/wddx/ext_wddx.h
@@ -22,6 +22,8 @@
22
#include "hphp/runtime/base/string-buffer.h"
23
#include "hphp/util/either.h"
24
25
+#include <unordered_set>
26
+
27
namespace HPHP {
28
29
class WddxPacket: public ResourceData {
@@ -59,7 +61,7 @@ class WddxPacket: public ResourceData {
59
61
return data.toOpaque();
60
62
}
63
};
- using SeenContainers = req::hash_set<ArrayOrObject, EitherHash>;
64
+ using SeenContainers = std::unordered_set<ArrayOrObject, EitherHash>;
65
66
bool recursiveAddVarImpl(const String& varName, const Variant& varVariant,
67
bool hasVarTag, SeenContainers& seen);
0 commit comments