commit | 9d9b7638cb1e95989329680730ec272da786615f | [log] [tgz] |
---|---|---|
author | Andrew Geissler <geissonator@yahoo.com> | Sun May 17 09:18:05 2020 -0500 |
committer | Andrew Geissler <geissonator@yahoo.com> | Sun May 17 09:18:05 2020 -0500 |
tree | f3fe9f5ea526e4d1767ce7f2cb0c9f8226d6da9e | |
parent | 7408e76a6aa7ac0803fece996c1a5f861e104092 [diff] [blame] |
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/message.hpp b/message.hpp index ebad490..738652c 100644 --- a/message.hpp +++ b/message.hpp
@@ -1,5 +1,6 @@ #pragma once +#include <cstddef> #include <memory> #include <numeric> #include <vector>