summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2020-04-07 08:39:46 +0300
committerGitHub <noreply@github.com>2020-04-07 08:39:46 +0300
commitd76facb57d88f97266d0fb19850bf7e7da5d9198 (patch)
tree395e8d9f1366900c29d9588738461dcf92a78907
parentcff8b2fd797537e36d5e16c1ac8e3303321e50b2 (diff)
parentd15621b36f501fa627566c8501ed5b035a0c949b (diff)
Merge pull request #52 from hhb/master
Include array
-rw-r--r--kms++/inc/kms++/dmabufframebuffer.h4
-rw-r--r--kms++/inc/kms++/dumbframebuffer.h2
-rw-r--r--kms++/inc/kms++/extframebuffer.h4
3 files changed, 8 insertions, 2 deletions
diff --git a/kms++/inc/kms++/dmabufframebuffer.h b/kms++/inc/kms++/dmabufframebuffer.h
index a17b1f1..2596d30 100644
--- a/kms++/inc/kms++/dmabufframebuffer.h
+++ b/kms++/inc/kms++/dmabufframebuffer.h
@@ -1,8 +1,10 @@
#pragma once
+#include <array>
+#include <vector>
+
#include "framebuffer.h"
#include "pixelformats.h"
-#include <vector>
namespace kms
{
diff --git a/kms++/inc/kms++/dumbframebuffer.h b/kms++/inc/kms++/dumbframebuffer.h
index f450b2c..15ea982 100644
--- a/kms++/inc/kms++/dumbframebuffer.h
+++ b/kms++/inc/kms++/dumbframebuffer.h
@@ -1,5 +1,7 @@
#pragma once
+#include <array>
+
#include "framebuffer.h"
#include "pixelformats.h"
diff --git a/kms++/inc/kms++/extframebuffer.h b/kms++/inc/kms++/extframebuffer.h
index f906fb2..3fb74ca 100644
--- a/kms++/inc/kms++/extframebuffer.h
+++ b/kms++/inc/kms++/extframebuffer.h
@@ -1,8 +1,10 @@
#pragma once
+#include <array>
+#include <vector>
+
#include "framebuffer.h"
#include "pixelformats.h"
-#include <vector>
namespace kms
{