Skip to content

Commit

Permalink
More fixup for 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Orvid committed Aug 2, 2016
1 parent 811bc69 commit f0af9f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hphp/runtime/ext/wddx/ext_wddx.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#include "hphp/runtime/base/string-buffer.h"
#include "hphp/util/either.h"

#include <unordered_set>

namespace HPHP {

class WddxPacket: public ResourceData {
Expand Down Expand Up @@ -59,7 +61,7 @@ class WddxPacket: public ResourceData {
return data.toOpaque();
}
};
using SeenContainers = req::hash_set<ArrayOrObject, EitherHash>;
using SeenContainers = std::unordered_set<ArrayOrObject, EitherHash>;

bool recursiveAddVarImpl(const String& varName, const Variant& varVariant,
bool hasVarTag, SeenContainers& seen);
Expand Down

0 comments on commit f0af9f5

Please sign in to comment.