You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to GNU compiler documentation about new aspects in GNU 13, the <cstdint> header providing fixed width integer types has to be explicitly included in the new version. Indeed using the testing framework in an external project and hence having to include vir/test.h breaks down compilation with GNU 13, because std::uint8_t type is not found any more. This is used here:
According to GNU compiler documentation about new aspects in GNU 13, the
<cstdint>
header providing fixed width integer types has to be explicitly included in the new version. Indeed using the testing framework in an external project and hence having to includevir/test.h
breaks down compilation with GNU 13, becausestd::uint8_t
type is not found any more. This is used here:virtest/vir/test.h
Line 779 in 95a85e2
Adding the missing
#include <cstdint>
should fix the problem.The text was updated successfully, but these errors were encountered: