Commit 49939a7f authored by Oleg Korshul's avatar Oleg Korshul

build error (macOS, clang)

parent e690aa0c
...@@ -223,7 +223,7 @@ public: ...@@ -223,7 +223,7 @@ public:
const std::pair<int, double> c = cols_.search (x_pt); const std::pair<int, double> c = cols_.search (x_pt);
const std::pair<int, double> r = rows_.search (y_pt); const std::pair<int, double> r = rows_.search (y_pt);
xlsx_table_position res = {c.first, c.second, r.first, r.second}; xlsx_table_position res = {(size_t)c.first, c.second, (size_t)r.first, r.second};
return res; return res;
} }
...@@ -236,7 +236,7 @@ public: ...@@ -236,7 +236,7 @@ public:
r = rows_.search(offset_row, y_pt); r = rows_.search(offset_row, y_pt);
xlsx_table_position res = {c.first, c.second, r.first, r.second}; xlsx_table_position res = {(size_t)c.first, c.second, (size_t)r.first, r.second};
return res; return res;
} }
...@@ -246,7 +246,7 @@ public: ...@@ -246,7 +246,7 @@ public:
std::pair<int, double> r = rows_.search (last_row, 0); std::pair<int, double> r = rows_.search (last_row, 0);
xlsx_table_position res = {c.first, c.second, r.first, r.second}; xlsx_table_position res = {(size_t)c.first, c.second, (size_t)r.first, r.second};
return res; return res;
} }
......
...@@ -32,5 +32,5 @@ core_linux_32 { ...@@ -32,5 +32,5 @@ core_linux_32 {
DESTDIR = $$DESTDIR/linux_32 DESTDIR = $$DESTDIR/linux_32
} }
core_mac { core_mac {
DESTDIR = $$DESTDIR/mac DESTDIR = $$DESTDIR/mac_64
} }
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment