fix GCC 13 issues

GCC 13 has moved `uint*_t` family from being included in a default
include tree.  Explicitly add `#include <cstdint>` to give these types.

Also remove one useless `std::move`.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I3e69ff4d3aa4a52856fc57b8d8babd32693324ee
diff --git a/ipmi_fru_info_area.hpp b/ipmi_fru_info_area.hpp
index 462a4ac..ea70401 100644
--- a/ipmi_fru_info_area.hpp
+++ b/ipmi_fru_info_area.hpp
@@ -1,5 +1,6 @@
 #pragma once
 
+#include <cstdint>
 #include <map>
 #include <string>
 #include <vector>