https://bugs.gentoo.org/767796 From: Robert-André Mauchin Date: Mon, 14 Dec 2020 02:23:52 +0000 (+0100) Subject: hls: add missing include X-Git-Url: https://git.videolan.org/?p=vlc.git;a=commitdiff_plain;h=3aea33378b0b317b99fce2eeaca8b31bf7cc6aba hls: add missing include Compilation would fail with: > error: 'numeric_limits' is not a member of 'std' without this include because of some hardening build flags mandated on Fedora Linux, with GCC 11. Refs #25325 Signed-off-by: Robert-André Mauchin Signed-off-by: Alexandre Janniaux --- --- a/modules/demux/hls/playlist/Parser.cpp +++ b/modules/demux/hls/playlist/Parser.cpp @@ -42,6 +42,7 @@ #include #include #include +#include using namespace adaptive; using namespace adaptive::playlist;