Base: Add #include <limits> where used

This commit is contained in:
Benjamin Nauck
2025-03-31 23:50:30 +02:00
parent 7b7e256e4f
commit cb51f3fd2c
8 changed files with 32 additions and 13 deletions

View File

@@ -23,6 +23,10 @@
#include "PreCompiled.h"
#ifndef _PreComp_
#include <limits>
#endif
// inclusion of the generated files (generated out of MatrixPy.xml)
#include "RotationPy.h"
#include "VectorPy.h"

View File

@@ -59,21 +59,22 @@
#endif
// STL
#include <string>
#include <string_view>
#include <algorithm>
#include <bitset>
#include <iomanip>
#include <list>
#include <limits>
#include <map>
#include <numbers>
#include <unordered_map>
#include <vector>
#include <set>
#include <stack>
#include <queue>
#include <memory>
#include <mutex>
#include <bitset>
#include <algorithm>
#include <iomanip>
#include <numbers>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <string_view>
#include <unordered_map>
#include <vector>
// streams
#include <iostream>

View File

@@ -22,8 +22,9 @@
#include "PreCompiled.h"
#ifndef _PreComp_
#include <cmath>
#include <array>
#include <cmath>
#include <limits>
#include <numbers>
#endif

View File

@@ -22,6 +22,10 @@
#include "PreCompiled.h"
#ifndef _PreComp_
#include <limits>
#endif
// inclusion of the generated files (generated out of QuantityPy.xml)
#include "QuantityPy.h"
#include "UnitPy.h"

View File

@@ -23,6 +23,10 @@
#include "PreCompiled.h"
#ifndef _PreComp_
#include <limits>
#endif
#include <boost/algorithm/string/predicate.hpp>
#include "Base/Exception.h"

View File

@@ -25,6 +25,7 @@
#ifndef _PreComp_
#include <array>
#include <limits>
#include <set>
#endif

View File

@@ -25,6 +25,7 @@
#include <algorithm>
#include <cmath>
#include <limits>
#include <list>
#include <vector>

View File

@@ -23,8 +23,11 @@
#include "PreCompiled.h"
#include <cmath>
#ifndef _PreComp_
#include <limits>
#endif
#include <cmath>
#include <boost/math/special_functions/fpclassify.hpp>
#include "Vector3D.h"