summaryrefslogtreecommitdiff
path: root/fast/read_pak.cc
diff options
context:
space:
mode:
Diffstat (limited to 'fast/read_pak.cc')
-rw-r--r--fast/read_pak.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/fast/read_pak.cc b/fast/read_pak.cc
index 81eed5d..c1cf761 100644
--- a/fast/read_pak.cc
+++ b/fast/read_pak.cc
@@ -1,6 +1,6 @@
-#include <msgpack.hpp>
#include <iostream>
#include <fstream>
+#include <msgpack.hpp>
using namespace std;
@@ -20,7 +20,8 @@ main(int argc, char** argv)
msgpack::object o = result.get();
cout << o << endl;
}
-
if (!bytes) break;
}
+
+ return 0;
}