Fix compilation failure with libstdc++
Queue.cpp was missing the <cstring> include for memcpy. Bug: Change-Id: Iaa498ec82c85dd6c7db7e7b09392baec08eb9e3c Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/22461 Reviewed-by: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
parent
adbf9153d9
commit
d586b079f2
|
@ -26,6 +26,8 @@
|
||||||
#include "dawn_platform/DawnPlatform.h"
|
#include "dawn_platform/DawnPlatform.h"
|
||||||
#include "dawn_platform/tracing/TraceEvent.h"
|
#include "dawn_platform/tracing/TraceEvent.h"
|
||||||
|
|
||||||
|
#include <cstring>
|
||||||
|
|
||||||
namespace dawn_native {
|
namespace dawn_native {
|
||||||
|
|
||||||
// QueueBase
|
// QueueBase
|
||||||
|
|
Loading…
Reference in New Issue