]> git.sesse.net Git - cubemap/blobdiff - parse.h
Identify UDPInput error messages by the stream, too.
[cubemap] / parse.h
diff --git a/parse.h b/parse.h
index 6912dd9a5c314ca41494aed2a6be41ba5094ab44..de260640f56ebc4a0cbe0f6b06a39ead8d6bcbc0 100644 (file)
--- a/parse.h
+++ b/parse.h
@@ -3,8 +3,9 @@
 
 // Various routines that deal with parsing; both HTTP requests and more generic text.
 
-#include <vector>
+#include <stddef.h>
 #include <string>
+#include <vector>
 
 // Split a line on whitespace, e.g. "foo  bar baz" -> {"foo", "bar", "baz"}.
 std::vector<std::string> split_tokens(const std::string &line);