summaryrefslogtreecommitdiff
path: root/src/mbgl/util/mat3.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/util/mat3.hpp')
-rw-r--r--src/mbgl/util/mat3.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mbgl/util/mat3.hpp b/src/mbgl/util/mat3.hpp
index c4203c940b..5069e02056 100644
--- a/src/mbgl/util/mat3.hpp
+++ b/src/mbgl/util/mat3.hpp
@@ -28,6 +28,7 @@ namespace mbgl {
using vec3 = std::array<double, 3>;
using vec3f = std::array<float, 3>;
+using vec3i = std::array<int, 3>;
using mat3 = std::array<double, 9>;
namespace matrix {