diff options
| -rw-r--r-- | impl/Complete.hpp | 1 | ||||
| -rw-r--r-- | impl/IdMap.hpp | 1 | ||||
| -rw-r--r-- | impl/Operator.hpp | 1 | 
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> | 
