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
Assume my currently used toolchain/libraries (on Gentoo Linux) removes a transitively-used header (haven't dug into exact cause) if CI here hasn't caught it.
include/CLI/impl/StringTools_inl.hpp has several use of uint32_t but does not include cstdint that I can see, including it fixes it for me.
/tmp/portage/dev-cpp/cli11-2.4.0/work/CLI11-2.4.0/include/CLI/impl/StringTools_inl.hpp:218:19: error: 'uint32_t' in namespace 'std' does not name a type; did you mean 'wint_t'?
218 | CLI11_INLINE std::uint32_t hexConvert(char hc) {
| ^~~~~~~~
| wint_t
The text was updated successfully, but these errors were encountered:
Fix#993. I tried include-what-you-use, but it reports too much stuff to
be able to pick out what's missing very effectively.
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
Assume my currently used toolchain/libraries (on Gentoo Linux) removes a transitively-used header (haven't dug into exact cause) if CI here hasn't caught it.
include/CLI/impl/StringTools_inl.hpp
has several use ofuint32_t
but does not include cstdint that I can see, including it fixes it for me.The text was updated successfully, but these errors were encountered: