temporary fix for max python/java flakyness

This commit is contained in:
Laurent Perron
2019-12-03 17:19:10 +01:00
parent fbd1be25e9
commit 1cea8b5400

View File

@@ -174,7 +174,11 @@ class Model {
}
// Map of FastTypeId<T> to a "singleton" of type T.
#if defined(__APPLE__)
std::map</*typeid*/ size_t, void*> singletons_;
#else
absl::flat_hash_map</*typeid*/ size_t, void*> singletons_;
#endif
struct DeleteInterface {
virtual ~DeleteInterface() = default;