Currently it is not possible to compile the header due to a missing include:
FuzzedDataProvider.h:194:38: error: ‘numeric_limits’ is not a member of ‘std’ 194 | return ConsumeIntegralInRange(std::numeric_limits<T>::min(), | ^~~~~~~~~~~~~~
std::numeric_limits is defined in the header <limits> (See https://en.cppreference.com/w/cpp/types/numeric_limits )
Thus, add the missing include.