string: ensure string included

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

Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Change-Id: Ic1bf10e15071227582e5738336f632d33705c80b
diff --git a/static/item_updater_static.hpp b/static/item_updater_static.hpp
index 40f616b..ce50462 100644
--- a/static/item_updater_static.hpp
+++ b/static/item_updater_static.hpp
@@ -2,6 +2,8 @@
 
 #include "item_updater.hpp"
 
+#include <string>
+
 namespace openpower
 {
 namespace software