Commit 4e61ea02 authored by Orvid King's avatar Orvid King Committed by Facebook Github Bot

Fix MSVC build

Summary: MSVC was failing to resolve `AllocTraits` within this specific context.

Reviewed By: yfeldblum

Differential Revision: D8179354

fbshipit-source-id: 236094f704bc89ec81236e9a67054e2081590cf6
parent a51a28c0
......@@ -836,7 +836,7 @@ class F14Table : public Policy {
using Policy::kDefaultConstructIsNoexcept;
using Policy::kSwapIsNoexcept;
using typename Policy::AllocTraits;
using AllocTraits = typename Policy::AllocTraits;
using ByteAlloc = typename AllocTraits::template rebind_alloc<uint8_t>;
using BytePtr = typename std::allocator_traits<ByteAlloc>::pointer;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment