From b98a5411acbc3faeb741f239f4820977724083de Mon Sep 17 00:00:00 2001 From: Brad Hards Date: Wed, 12 Apr 2023 20:56:55 +1000 Subject: [PATCH] add missing limits header During testing of #118, I hit an error about numeric_limits not being part of std. This was on Ubuntu Linux with g++ 11.3.0. --- srcs/reader/heifreaderimpl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/srcs/reader/heifreaderimpl.cpp b/srcs/reader/heifreaderimpl.cpp index 5dd3363..a90a79f 100644 --- a/srcs/reader/heifreaderimpl.cpp +++ b/srcs/reader/heifreaderimpl.cpp @@ -19,6 +19,7 @@ #include #include #include +#include #include "audiosampleentrybox.hpp" #include "auxiliarytypeinfobox.hpp"