On Tue, 24 Jan 2023 at 07:01, Vascom <vasc...@gmail.com> wrote:
>
> I have some packages failed.
> One of them libtins. Problem is that:
>
> error: 'uint32_t' is not a member of 'std';
>
> Is it normal? Is it GCC 13 change?
>
> I must patch sources now?
> sed -i 's|stdint.h|cstdint|' include/tins/ip_address.h

std::uint32_t is defined in <cstdint>. If the sources don't include
that header, that is a bug.

This is the same thing we have mass rebuild: C and C++ code must
include the headers for the features it uses.

If you get an error saying something is not declared, make sure the
right header is included.
_______________________________________________
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to