aboutsummaryrefslogtreecommitdiff
path: root/deb_patches/add-missing-include-functional.patch
blob: d1ff90e50edc2b1b47975d3292de596699bcfdca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: add missing #include directive for the use of std::function
Bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1626972
Author: Olivier Tilloy <olivier.tilloy@canonical.com>

--- a/image/imgFrame.h
+++ b/image/imgFrame.h
@@ -7,6 +7,7 @@
 #ifndef mozilla_image_imgFrame_h
 #define mozilla_image_imgFrame_h
 
+#include <functional>
 #include <utility>
 
 #include "AnimationParams.h"
bgstack15