diff options
| author | Jamie Madill <jmadill@chromium.org> | 2016-04-04 11:54:43 -0400 |
|---|---|---|
| committer | Dustin Graves <dustin@lunarg.com> | 2016-04-05 12:00:40 -0600 |
| commit | 96a38292c188fc023b1f40e024329631d4b3d25c (patch) | |
| tree | 831e5d39c93e7eee2dd5f79c0e288c3f7f75a615 /layers/unique_objects.h | |
| parent | 899d6da088fc059bd0d8c34924f960e3c6a2b479 (diff) | |
| download | usermoji-96a38292c188fc023b1f40e024329631d4b3d25c.tar.xz | |
layers: Change include order of loader platform.
This fixes a bug where on Windows, windows.h would include
winsock.h before winsock2.h, causing numerous warnings.
Change-Id: I8eba1497385dcee6ebb201c74fe48268e6663b9c
Diffstat (limited to 'layers/unique_objects.h')
| -rw-r--r-- | layers/unique_objects.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/layers/unique_objects.h b/layers/unique_objects.h index b8effcf5..3fbf54e5 100644 --- a/layers/unique_objects.h +++ b/layers/unique_objects.h @@ -25,14 +25,14 @@ * Author: Tobin Ehlis <tobine@google.com> */ +#include "vk_loader_platform.h" +#include "vulkan/vulkan.h" + #include <stdio.h> #include <stdlib.h> #include <string.h> #include <inttypes.h> -#include "vulkan/vulkan.h" -#include "vk_loader_platform.h" - #include <vector> #include <unordered_map> |
