summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlo Zancanaro <carlo@pc-4w14-0.cs.usyd.edu.au>2012-10-15 11:55:10 +1100
committerCarlo Zancanaro <carlo@pc-4w14-0.cs.usyd.edu.au>2012-10-15 11:55:10 +1100
commitc4626a62754862d20b41e8a46a3574264ea80e6d (patch)
treec415032eb29194a019142e02a26e8004cfa0c305
parenta7c69ec12aec23036bfdb6447e7c38b001a40f3d (diff)
... Assert needs some includes.
-rw-r--r--impl/Complete.hpp1
-rw-r--r--impl/IdMap.hpp1
-rw-r--r--impl/Operator.hpp1
3 files changed, 3 insertions, 0 deletions
diff --git a/impl/Complete.hpp b/impl/Complete.hpp
index 9acb9d0..8c5559a 100644
--- a/impl/Complete.hpp
+++ b/impl/Complete.hpp
@@ -1,6 +1,7 @@
#ifndef COMPLETE_HPP
#define COMPLETE_HPP
+#include <cassert>
#include <ostream>
#include <istream>
diff --git a/impl/IdMap.hpp b/impl/IdMap.hpp
index ed0723e..8cb25f8 100644
--- a/impl/IdMap.hpp
+++ b/impl/IdMap.hpp
@@ -1,6 +1,7 @@
#ifndef ID_MAP_HPP
#define ID_MAP_HPP
+#include <cassert>
#include <ostream>
template<typename T, typename V>
diff --git a/impl/Operator.hpp b/impl/Operator.hpp
index cf3ffed..64ef096 100644
--- a/impl/Operator.hpp
+++ b/impl/Operator.hpp
@@ -1,6 +1,7 @@
#ifndef OPERATOR_HPP
#define OPERATOR_HPP
+#include <cassert>
#include <vector>
template<typename Domain>