DARMA-tasking / vt

DARMA/vt => Virtual Transport
Other
34 stars 8 forks source link

fix missing `<cstdint>` include #2225

Closed cz4rs closed 6 months ago

cz4rs commented 7 months ago

Describe the bug vt fails to build with clang 16.0.6 on Fedora 38:

/vt/src/vt/configs/error/stack_out.h:54:44: error: use of undeclared identifier 'uint64_t'
using StackTupleType  = std::tuple<int32_t,uint64_t,std::string,std::size_t>;
                                           ^

This is because of changes in Standard Library headers in GCC 13 (see Header dependency changes).