Skip to content

Commit f0af9f5

Browse files
committed
More fixup for 3.9
1 parent 811bc69 commit f0af9f5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

hphp/runtime/ext/wddx/ext_wddx.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
#include "hphp/runtime/base/string-buffer.h"
2323
#include "hphp/util/either.h"
2424

25+
#include <unordered_set>
26+
2527
namespace HPHP {
2628

2729
class WddxPacket: public ResourceData {
@@ -59,7 +61,7 @@ class WddxPacket: public ResourceData {
5961
return data.toOpaque();
6062
}
6163
};
62-
using SeenContainers = req::hash_set<ArrayOrObject, EitherHash>;
64+
using SeenContainers = std::unordered_set<ArrayOrObject, EitherHash>;
6365

6466
bool recursiveAddVarImpl(const String& varName, const Variant& varVariant,
6567
bool hasVarTag, SeenContainers& seen);

0 commit comments

Comments
 (0)