blob: fb1a079b6ae2126ce7a1b9797ff3fbca5e95d0d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
Add missing includes for GCC 10.
--- a/JASP-Common/column.cpp 1970-01-01 01:00:01.000000000 +0100
+++ b/JASP-Column/column.cpp 2021-12-21 10:30:32.455931317 +0100
@@ -21,6 +21,7 @@
#include <sstream>
#include <string>
+#include <cfloat>
#include <boost/lexical_cast.hpp>
#include <boost/algorithm/string/predicate.hpp>
--- a/JASP-Engine/rbridge.cpp 1970-01-01 01:00:01.000000000 +0100
+++ b/JASP-Engine/rbridge.cpp 2021-12-21 10:36:47.825085783 +0100
@@ -15,6 +15,8 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
+#include <cmath>
+
#include "rbridge.h"
#include "columnencoder.h"
#include "jsonredirect.h"
--- a/JASP-Desktop/widgets/boundqmltextinput.cpp 1970-01-01 01:00:01.000000000 +0100
+++ b/JASP-Desktop/widgets/boundqmltextinput.cpp 2021-12-21 10:40:18.119960946 +0100
@@ -16,6 +16,8 @@
// <http://www.gnu.org/licenses/>.
//
+#include <cmath>
+
#include "boundqmltextinput.h"
#include "../analysis/analysisform.h"
#include "../analysis/jaspcontrolbase.h"
--- a/JASP-Desktop/data/filtermodel.cpp 1970-01-01 01:00:01.000000000 +0100
+++ b/JASP-Desktop/data/filtermodel.cpp 2021-12-21 10:43:56.571897913 +0100
@@ -1,3 +1,5 @@
+#include <cmath>
+
#include "filtermodel.h"
#include "utilities/jsonutilities.h"
#include "columnencoder.h"
--- a/JASP-Desktop/widgets/listmodeltableviewbase.cpp 1970-01-01 01:00:01.000000000 +0100
+++ b/JASP-Desktop/widgets/listmodeltableviewbase.cpp 2021-12-21 10:47:06.104957449 +0100
@@ -16,6 +16,8 @@
// <http://www.gnu.org/licenses/>.
//
+#include <cmath>
+
#include "log.h"
#include <QSize>
#include <fstream>
|