From 9d123e003ebc7470c69bef51192d65f53c094c6c Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Wed, 28 Aug 2019 12:55:15 +1000 Subject: [PATCH] build: add some forgotten, required, headers --- array/darray.hpp | 1 + iterator/iota.hpp | 3 +++ 2 files changed, 4 insertions(+) diff --git a/array/darray.hpp b/array/darray.hpp index c59de9c2..3ab374fc 100644 --- a/array/darray.hpp +++ b/array/darray.hpp @@ -8,6 +8,7 @@ #pragma once +#include "../debug/assert.hpp" #include "../iterator/zip.hpp" #include diff --git a/iterator/iota.hpp b/iterator/iota.hpp index f0f85d9e..5674ccea 100644 --- a/iterator/iota.hpp +++ b/iterator/iota.hpp @@ -8,6 +8,9 @@ #pragma once +#include +#include + namespace cruft::iterator { /////////////////////////////////////////////////////////////////////////// /// A numeric range that supplies a sequence of values.