summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-05-17 13:28:50 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-05-17 13:28:50 +0200
commitb3ebf5ea2fc031edaf5e2a006fd3c33d95caadb8 (patch)
tree007c7b0bd553ce5def5bba98da24d06e07a58026
parent110050d8e8bc31a7680ed0100190844afe228fed (diff)
downloadUXP-b3ebf5ea2fc031edaf5e2a006fd3c33d95caadb8.tar
UXP-b3ebf5ea2fc031edaf5e2a006fd3c33d95caadb8.tar.gz
UXP-b3ebf5ea2fc031edaf5e2a006fd3c33d95caadb8.tar.lz
UXP-b3ebf5ea2fc031edaf5e2a006fd3c33d95caadb8.tar.xz
UXP-b3ebf5ea2fc031edaf5e2a006fd3c33d95caadb8.zip
Fix missing include in Skia SafeMath
-rw-r--r--gfx/skia/skia/src/core/SkSafeMath.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gfx/skia/skia/src/core/SkSafeMath.h b/gfx/skia/skia/src/core/SkSafeMath.h
index f54be32fc..9948fd722 100644
--- a/gfx/skia/skia/src/core/SkSafeMath.h
+++ b/gfx/skia/skia/src/core/SkSafeMath.h
@@ -9,6 +9,7 @@
#define SkSafeMath_DEFINED
#include "SkTypes.h"
+#include "SkTFitsIn.h"
#include <limits>
// SkSafeMath always check that a series of operations do not overflow.