Add header for std::forward
Previously this was being indirectly supplied by <memory>, which has been removed. Clang happily still finds std::forward, but GCC does not. BUG=dawn:768 Change-Id: I87e6bb6aa83bc7f3253c58e32fa0ba977752858c Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/48820 Commit-Queue: Ryan Harrison <rharrison@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org> Auto-Submit: Ryan Harrison <rharrison@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
parent
5e57442beb
commit
b48d1f4b3d
|
@ -19,6 +19,7 @@
|
|||
|
||||
#include <cstdint>
|
||||
#include <type_traits>
|
||||
#include <utility>
|
||||
|
||||
// The SlabAllocator allocates objects out of one or more fixed-size contiguous "slabs" of memory.
|
||||
// This makes it very quick to allocate and deallocate fixed-size objects because the allocator only
|
||||
|
|
Loading…
Reference in New Issue