AcademySoftwareFoundation / rawtoaces

RAW to ACES Utility
141 stars 47 forks source link

includes missing for GCC 11.2.1 #138

Open mruegenberg opened 6 months ago

mruegenberg commented 6 months ago

When trying to compile the package with GCC 11.2.1 I got the following error: home/aswf/rawtoaces/include/rawtoaces/define.h:166:21: error: ‘numeric_limits’ was not declared in this scope

Following this Stackoverflow answer I added #include <limits> to define.h which fixed that issue.

Also for rawtoaces/src/rawtoaces_util/acesrender.cpp, I had to add #include <mutex> at the top