aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/image.cpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2013-01-20 22:28:10 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-20 22:28:10 +0100
commit11b0c18dacbb46541ce0d22e0498abac38d30f7b (patch)
treedf4a36b25a69f318054d10548e8654b7a9a63db9 /src/utils/image.cpp
parentbc84caa13d6fcc6d49c3b39e7341fa0c8d9c82ed (diff)
downloadusdx-11b0c18dacbb46541ce0d22e0498abac38d30f7b.tar.gz
usdx-11b0c18dacbb46541ce0d22e0498abac38d30f7b.tar.xz
usdx-11b0c18dacbb46541ce0d22e0498abac38d30f7b.zip
fix includes
Diffstat (limited to 'src/utils/image.cpp')
-rw-r--r--src/utils/image.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/utils/image.cpp b/src/utils/image.cpp
index 3fd8b3a9..10d4c13b 100644
--- a/src/utils/image.cpp
+++ b/src/utils/image.cpp
@@ -22,8 +22,11 @@
*
*/
-#include "image.hpp"
+#include <cstddef>
+
#include <SDL/SDL_image.h>
+
+#include "image.hpp"
#include "utils/binary_file.hpp"
namespace usdx