"Some C++ Standard Library headers have been changed to no longer
include other headers that were being used internally by the library.
As such, C++ programs that used standard library components
without including the right headers will no longer compile."
For fixing, just need to explicitly include cstdint.
Change-Id: I69eeceb7f4388a4c7ee357a0a5b8d798508d4b6e
#pragma once
#include <array>
-#include <cstddef>
+#include <cstdint>
#include <string_view>
#include <utility> // for std::move
#include <vector>