managarm / frigg

Lightweight C++ utilities and algorithms for system programming
MIT License
56 stars 20 forks source link

eternal: add missing include #54

Closed ilobilo closed 1 year ago

ilobilo commented 1 year ago

this commit adds missing #include in eternal.hpp eternal.hpp relies on cxxshim/{utility|algorithm|new} including stddef.h, but unlike cxxshim, libstdc++ does not do that, so it throws an error about missing size_t

ArsenArsen commented 1 year ago

can you instead make this cstddef and make instances use the std:: prefix

ilobilo commented 1 year ago

sure