size_t: ensure cstddef included

Latest upstream yocto appears to have removed a free include of cstddef.
This is causing compile failures for files which do not include it
properly.

Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Change-Id: Ie54a2768ef72f59ab140df05e79e86baae6eaa82
diff --git a/sol/sol_manager.hpp b/sol/sol_manager.hpp
index 6a5887b..74ce8e9 100644
--- a/sol/sol_manager.hpp
+++ b/sol/sol_manager.hpp
@@ -6,6 +6,7 @@
 
 #include <boost/asio/io_context.hpp>
 #include <boost/asio/local/stream_protocol.hpp>
+#include <cstddef>
 #include <map>
 #include <memory>
 #include <string>