diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-05-17 13:28:50 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-05-17 13:28:50 +0200 |
commit | b031aa4f010c16e6528e2ad89c77cf0fc97e83aa (patch) | |
tree | 007c7b0bd553ce5def5bba98da24d06e07a58026 /gfx/skia | |
parent | bbb13a8811c99bed1dd76e733cd73f2a8343ef26 (diff) | |
download | uxp-b031aa4f010c16e6528e2ad89c77cf0fc97e83aa.tar.gz |
Fix missing include in Skia SafeMath
Diffstat (limited to 'gfx/skia')
-rw-r--r-- | gfx/skia/skia/src/core/SkSafeMath.h | 1 |
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 f54be32fce..9948fd722e 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. |