build: add forgotten includes
This commit is contained in:
parent
f793175fdf
commit
c4daffc001
@ -14,11 +14,12 @@
|
|||||||
* Copyright 2010-2016 Danny Robson <danny@nerdcruft.net>
|
* Copyright 2010-2016 Danny Robson <danny@nerdcruft.net>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "colour.hpp"
|
#include "./colour.hpp"
|
||||||
|
|
||||||
#include "range.hpp"
|
#include "./debug.hpp"
|
||||||
#include "random.hpp"
|
#include "./range.hpp"
|
||||||
#include "stream.hpp"
|
#include "./random.hpp"
|
||||||
|
#include "./stream.hpp"
|
||||||
|
|
||||||
#include <array>
|
#include <array>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
#include <ostream>
|
||||||
|
|
||||||
|
|
||||||
using util::hash::SHA1;
|
using util::hash::SHA1;
|
||||||
@ -36,8 +37,8 @@ std::ostream&
|
|||||||
operator<< (std::ostream &os, SHA1::state_t t)
|
operator<< (std::ostream &os, SHA1::state_t t)
|
||||||
{
|
{
|
||||||
switch (t) {
|
switch (t) {
|
||||||
case SHA1::READY: os << "READY"; return os;
|
case SHA1::READY: return os << "READY";
|
||||||
case SHA1::FINISHED: os << "FINISHED"; return os;
|
case SHA1::FINISHED: return os << "FINISHED";
|
||||||
}
|
}
|
||||||
|
|
||||||
unreachable ();
|
unreachable ();
|
||||||
|
@ -17,9 +17,10 @@
|
|||||||
#include "./circular.hpp"
|
#include "./circular.hpp"
|
||||||
|
|
||||||
#include "../system.hpp"
|
#include "../system.hpp"
|
||||||
|
#include "../../debug.hpp"
|
||||||
#include "../../except.hpp"
|
#include "../../except.hpp"
|
||||||
#include "../../raii.hpp"
|
|
||||||
#include "../../maths.hpp"
|
#include "../../maths.hpp"
|
||||||
|
#include "../../raii.hpp"
|
||||||
#include "../../random.hpp"
|
#include "../../random.hpp"
|
||||||
|
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
|
|
||||||
#include "quaternion.hpp"
|
#include "quaternion.hpp"
|
||||||
|
|
||||||
|
#include "debug.hpp"
|
||||||
#include "maths.hpp"
|
#include "maths.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user