From 40f481f9fd0af83c03ab2ad67f05a7e9c77bb268 Mon Sep 17 00:00:00 2001 From: Sascha Willems Date: Thu, 8 Dec 2016 08:07:43 +0100 Subject: [PATCH] Added missing include for std::find (Fixes #255) --- base/vulkandevice.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/base/vulkandevice.hpp b/base/vulkandevice.hpp index 18549d98..61b424ac 100644 --- a/base/vulkandevice.hpp +++ b/base/vulkandevice.hpp @@ -12,6 +12,7 @@ #include #include +#include #include "vulkan/vulkan.h" #include "vulkantools.h" #include "vulkanbuffer.hpp"