Skip to content

Build Failure on Python 3.13+ due to missing std:: namespace for C++ types #4

@munlicode

Description

@munlicode

The package fails to build from source on Python 3.13 and newer. The compilation fails in src/args.cc with the error 'uint64_t' was not declared in this scope.

This is caused by the use of uint64_t without the required std:: namespace prefix. Modern C++ compilers do not find the type definition without it.

The fix is to update all instances of uint64_t to std::uint64_t and ensure the <cstdint> header is included where necessary.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions