diff options
| author | Mark Lobodzinski <mark@lunarg.com> | 2016-12-02 15:33:18 -0700 |
|---|---|---|
| committer | Mark Lobodzinski <mark@lunarg.com> | 2016-12-02 15:33:18 -0700 |
| commit | bd2da189dccf8652632197876713d72ad0ecf3f2 (patch) | |
| tree | b844feede1b0bc439fcfa3026668b3cd2c92b910 | |
| parent | 98e0026eb003dd93b2f7f6534dd717878ed4dbdd (diff) | |
| download | usermoji-bd2da189dccf8652632197876713d72ad0ecf3f2.tar.xz | |
layers: Fix Windows build
STL min/max functions were causing windows build failures.
Change-Id: Ia153a5d6a3d245b645b5f829c3f076c023d865f1
| -rw-r--r-- | layers/descriptor_sets.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/layers/descriptor_sets.cpp b/layers/descriptor_sets.cpp index 142f1eff..eef65676 100644 --- a/layers/descriptor_sets.cpp +++ b/layers/descriptor_sets.cpp @@ -25,6 +25,7 @@ #include "vk_enum_string_helper.h" #include "vk_safe_struct.h" #include <sstream> +#include <algorithm> // Construct DescriptorSetLayout instance from given create info cvdescriptorset::DescriptorSetLayout::DescriptorSetLayout(const VkDescriptorSetLayoutCreateInfo *p_create_info, |
