aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/binary_file.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/binary_file.cpp
parentbc84caa13d6fcc6d49c3b39e7341fa0c8d9c82ed (diff)
downloadusdx-11b0c18dacbb46541ce0d22e0498abac38d30f7b.tar.gz
usdx-11b0c18dacbb46541ce0d22e0498abac38d30f7b.tar.xz
usdx-11b0c18dacbb46541ce0d22e0498abac38d30f7b.zip
fix includes
Diffstat (limited to '')
-rw-r--r--src/utils/binary_file.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/utils/binary_file.cpp b/src/utils/binary_file.cpp
index 06056405..536bdc70 100644
--- a/src/utils/binary_file.cpp
+++ b/src/utils/binary_file.cpp
@@ -22,9 +22,11 @@
*
*/
-#include "binary_file.hpp"
+#include <cstddef>
#include <string>
+#include "binary_file.hpp"
+
namespace usdx
{
BinaryFile::BinaryFile(const std::string& filename) : file(filename.c_str(), std::ifstream::in | std::ifstream::binary), content(NULL)