pthom / imgui_bundle

Dear ImGui Bundle: an extensive set of Ready-to-use widgets and libraries, based on ImGui. Start your first app in 5 lines of code, or less. Whether you prefer Python or C++, this pack has your back!
https://pthom.github.io/imgui_bundle/
MIT License
592 stars 63 forks source link

missing #include <cstdint> in fplus.hpp #138

Closed digitalsignalperson closed 9 months ago

digitalsignalperson commented 9 months ago

When trying to install from source for both python and C++ I had compile errors in fplus.hpp with many errors like ‘int64_t’ in namespace ‘std’ does not name a type.

The section that seemed to need the include is here around line 7448 https://github.com/pthom/imgui_bundle/blob/b39daddef097e2054074ce106c7f62461c4495e9/external/fplus/fplus/fplus.hpp#L7448

adding #include <cstdint> here and the builds work now

pthom commented 9 months ago

Hi,

Thanks for letting me know! I just updated fplus, it should be ok now.