| commit | 0859e6b1d24e2234dc6a2ed9bb3df319fdc0245b | [log] [tgz] |
|---|---|---|
| author | Corentin Wallez <cwallez@chromium.org> | Fri Jan 29 12:50:36 2021 +0000 |
| committer | Commit Bot service account <commit-bot@chromium.org> | Fri Jan 29 12:50:36 2021 +0000 |
| tree | e86c49632e0a190ff691bb5e9aedce6b643561c3 | |
| parent | bf1c0cf52377b4db2bf3a433dc5056620aad7cdd [diff] [blame] |
Add missing include for MSVC std::replace used in WireHelper is in <algorithm> TBR=enga@chromium.org Bug: dawn:602 Change-Id: Id618a19e72d5b54701c913470d0f584ce0fa2bec Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/39501 Reviewed-by: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org>
diff --git a/src/utils/WireHelper.cpp b/src/utils/WireHelper.cpp index be420ca..2bdae6d 100644 --- a/src/utils/WireHelper.cpp +++ b/src/utils/WireHelper.cpp
@@ -23,6 +23,7 @@ #include "dawn_wire/WireServer.h" #include "utils/TerribleCommandBuffer.h" +#include <algorithm> #include <fstream> #include <iomanip> #include <set>