summaryrefslogtreecommitdiff
path: root/patches/www-client/chromium-72.0.3626.121/sizet.patch
blob: 5c5ed2257791f0484b0d16be08bfd5f00026c91d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
description: size_t is not in scope by default in gcc 6
author: Michael Gilbert <mgilbert@debian.org>

--- a/media/base/subsample_entry.h
+++ b/media/base/subsample_entry.h
@@ -36,7 +36,7 @@ struct SubsampleEntry {
 // does not match |input_size|.
 MEDIA_EXPORT bool VerifySubsamplesMatchSize(
     const std::vector<SubsampleEntry>& subsamples,
-    size_t input_size);
+    std::size_t input_size);
 
 }  // namespace media