tools: blob: add missing header
Add missing cstdint header. Technically not required because the cpp
string header provides the fixed-size types through inclusion.
Change-Id: I588ce05e82387b2f6db4ee17c39fa34d20a2c77b
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/tools/blob_interface.hpp b/tools/blob_interface.hpp
index 9b0ff7d..815874f 100644
--- a/tools/blob_interface.hpp
+++ b/tools/blob_interface.hpp
@@ -1,5 +1,6 @@
#pragma once
+#include <cstdint>
#include <string>
#include <vector>