summaryrefslogtreecommitdiff
path: root/src/mbgl/util/mat4.hpp
diff options
context:
space:
mode:
authorMikko Pulkki <mikko.pulkki@mapbox.com>2020-04-29 12:26:57 +0300
committerMikko Pulkki <55925868+mpulkki-mapbox@users.noreply.github.com>2020-05-02 17:07:02 +0300
commitc2294ad68d0ac1a3f62cc327cc295c62c4b286eb (patch)
tree883bda2543f4f2ab07e7cfd1e493c128cde4cd7d /src/mbgl/util/mat4.hpp
parent0895c698d95d8ea35cb7dc35f667736f26f0e098 (diff)
downloadqtlocation-mapboxgl-c2294ad68d0ac1a3f62cc327cc295c62c4b286eb.tar.gz
Move vector types to a public header
Diffstat (limited to 'src/mbgl/util/mat4.hpp')
-rw-r--r--src/mbgl/util/mat4.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/util/mat4.hpp b/src/mbgl/util/mat4.hpp
index 438771949f..5e56ca170b 100644
--- a/src/mbgl/util/mat4.hpp
+++ b/src/mbgl/util/mat4.hpp
@@ -23,10 +23,10 @@
#pragma once
#include <array>
+#include <mbgl/util/vectors.hpp>
namespace mbgl {
-using vec4 = std::array<double, 4>;
using mat4 = std::array<double, 16>;
namespace matrix {