mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2026-04-26 10:41:22 +00:00
removed assignment of gp::loc to tie as Clang does not like it
This commit is contained in:
3
cell.cpp
3
cell.cpp
@@ -795,8 +795,7 @@ cdata *getHeptagonCdata(heptagon *h) {
|
||||
|
||||
cdata *getEuclidCdata(gp::loc h) {
|
||||
|
||||
int x, y;
|
||||
tie(x,y) = h;
|
||||
int x = h.first, y = h.second;
|
||||
auto& data = archimedean ? arcm::get_cdata() : get_cdata();
|
||||
|
||||
// hrmap_euclidean* euc = dynamic_cast<hrmap_euclidean*> (currentmap);
|
||||
|
||||
Reference in New Issue
Block a user