From 54932f5aaacd853e13c7a406b3b539510e30607e Mon Sep 17 00:00:00 2001
From: Lars Bilke <lars.bilke@ufz.de>
Date: Fri, 12 Jan 2018 15:05:05 +0100
Subject: [PATCH] Fixed more include errors on Linux Debug.

---
 BaseLib/DebugTools.h                                           | 3 ++-
 GeoLib/QuadTree.h                                              | 3 ++-
 .../CapillaryPressure/CapillaryPressureSaturation.h            | 1 +
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/BaseLib/DebugTools.h b/BaseLib/DebugTools.h
index 13a06a9307f..be80c7ebaae 100644
--- a/BaseLib/DebugTools.h
+++ b/BaseLib/DebugTools.h
@@ -13,8 +13,9 @@
 
 #pragma once
 
-#include <ostream>
 #include <algorithm>
+#include <iterator>
+#include <ostream>
 #include <vector>
 
 template<typename T>
diff --git a/GeoLib/QuadTree.h b/GeoLib/QuadTree.h
index c6572dfcb09..4d78eee59d1 100644
--- a/GeoLib/QuadTree.h
+++ b/GeoLib/QuadTree.h
@@ -14,10 +14,11 @@
 
 #pragma once
 
+#include <cassert>
 #include <limits>
+#include <utility>
 
 #include <logog/include/logog.hpp>
-#include <utility>
 
 namespace GeoLib
 {
diff --git a/MaterialLib/PorousMedium/UnsaturatedProperty/CapillaryPressure/CapillaryPressureSaturation.h b/MaterialLib/PorousMedium/UnsaturatedProperty/CapillaryPressure/CapillaryPressureSaturation.h
index e4eb317ecd1..a8fe13a4b8f 100644
--- a/MaterialLib/PorousMedium/UnsaturatedProperty/CapillaryPressure/CapillaryPressureSaturation.h
+++ b/MaterialLib/PorousMedium/UnsaturatedProperty/CapillaryPressure/CapillaryPressureSaturation.h
@@ -11,6 +11,7 @@
 
 #pragma once
 
+#include <limits>
 #include <string>
 
 namespace MaterialLib
-- 
GitLab