Add missing include in webm2pes.cc.

We need <algorithm> on some platforms.

Change-Id: I65fa3ad52265b05c4141e14d97d6de0af1649b29
This commit is contained in:
Tom Finegan 2017-01-18 07:26:30 -08:00
parent 4956b2dec6
commit 9fb774ab80

View File

@ -7,6 +7,7 @@
// be found in the AUTHORS file in the root of the source tree. // be found in the AUTHORS file in the root of the source tree.
#include "m2ts/webm2pes.h" #include "m2ts/webm2pes.h"
#include <algorithm>
#include <cassert> #include <cassert>
#include <cstdio> #include <cstdio>
#include <cstring> #include <cstring>