build: 🚀 Add include to typesFImdlp to fix error building wheel in linux

This commit is contained in:
2022-12-22 19:36:43 +01:00
parent 13ebb43bf3
commit 7b20bde428

View File

@@ -2,6 +2,7 @@
#define TYPES_H #define TYPES_H
#include <vector> #include <vector>
#include <map> #include <map>
#include <stdexcept>
using namespace std; using namespace std;
namespace mdlp { namespace mdlp {
@@ -13,4 +14,4 @@ namespace mdlp {
typedef map<tuple<int, int>, precision_t> cacheEnt_t; typedef map<tuple<int, int>, precision_t> cacheEnt_t;
typedef map<tuple<int, int, int>, precision_t> cacheIg_t; typedef map<tuple<int, int, int>, precision_t> cacheIg_t;
} }
#endif #endif