| commit | f8374cf0e75c0b44782ce903622a9fed1a1d709e | [log] [tgz] |
|---|---|---|
| author | Chris Forbes <chrisforbes@google.com> | Thu Dec 06 13:25:59 2018 -0800 |
| committer | Chris Forbes <chrisforbes@google.com> | Thu Dec 06 21:34:48 2018 +0000 |
| tree | 2df9029182058678b142cc8bab3858196c0f330a | |
| parent | 0ab9f3be379e58fc35c883a11d18b4a14f577fa3 [diff] [blame] |
Fix the CMake build One part of this might change -- master contains some uses of std::make_unique which Alexis might get rid of. Change-Id: I40ae17f4e88920c4d60b79e1d4b117a7800fcd82 Reviewed-on: https://swiftshader-review.googlesource.com/c/23028 Reviewed-by: Alexis Hétu <sugoi@google.com> Tested-by: Chris Forbes <chrisforbes@google.com>
diff --git a/src/Vulkan/VkCommandBuffer.cpp b/src/Vulkan/VkCommandBuffer.cpp index 45f9199..dbcb386 100644 --- a/src/Vulkan/VkCommandBuffer.cpp +++ b/src/Vulkan/VkCommandBuffer.cpp
@@ -14,6 +14,8 @@ #include "VkCommandBuffer.hpp" +#include <cstring> + namespace vk { @@ -524,4 +526,4 @@ state = EXECUTABLE; } -} // namespace vk \ No newline at end of file +} // namespace vk