mathworks / libmexclass

libmexclass is a MATLAB framework which enables users to implement the functionality of MATLAB classes in terms of equivalent C++ classes using MEX.
BSD 3-Clause "New" or "Revised" License
5 stars 1 forks source link

Clang errors about the std::uint64_t not being in namespace std #16

Closed jhughes-mw closed 1 year ago

jhughes-mw commented 1 year ago

I'm seeing:

error: use of undeclared identifier 'std'
        using ID = std::uint64_t;

Super simple fix, add

#include <cstdint>
jhughes-mw commented 1 year ago

closed by: 518f050b5c1f6e072197a8d5a4f2f71468bb1a81