tfussell / xlnt

:bar_chart: Cross-platform user-friendly xlsx library for C++11+
Other
1.47k stars 415 forks source link

include cstdint, limits to solve compilation erros on gcc 13 #708

Open toge opened 1 year ago

toge commented 1 year ago

I met several compilation errors on gcc 13. These semms to be caused by missing include files. I created a PR to add the missing include files.

Please merge it if possible.

commel commented 1 year ago

I was attempting a pull request myself, until I saw that there was one already. With mine I also had to add

#include <limits>

to source/detail/number_format/number_formatter.cpp in line 27.