Fix missing include for std::unique_ptr in VulkanBinding.cpp

Bug: dawn:100
Change-Id: Ied470aca31dba15e704ec6c737b01e3ff344b240
Reviewed-on: https://dawn-review.googlesource.com/c/4380
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Raul Tambre 2019-02-06 17:35:41 +00:00 committed by Commit Bot service account
parent 978fa65a2c
commit 7771f58c7f
1 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,8 @@
// Include GLFW after VulkanBackend so that it declares the Vulkan-specific functions // Include GLFW after VulkanBackend so that it declares the Vulkan-specific functions
#include "GLFW/glfw3.h" #include "GLFW/glfw3.h"
#include <memory>
namespace utils { namespace utils {
class VulkanBinding : public BackendBinding { class VulkanBinding : public BackendBinding {