diff --git a/archimedean.cpp b/archimedean.cpp index 1acebb0a..8554ce7d 100644 --- a/archimedean.cpp +++ b/archimedean.cpp @@ -1314,7 +1314,7 @@ EX void show() { } else { tested.coloring = col; - tilings.push_back(move(tested)); + tilings.push_back(std::move(tested)); /* sort(tilings.begin(), tilings.end(), [] (archimedean_tiling& s1, archimedean_tiling& s2) { if(s1.euclidean_angle_sum < s2.euclidean_angle_sum - 1e-6) return true; if(s2.euclidean_angle_sum < s1.euclidean_angle_sum - 1e-6) return false; diff --git a/complex.cpp b/complex.cpp index 2bf761c5..685d331c 100644 --- a/complex.cpp +++ b/complex.cpp @@ -2082,7 +2082,7 @@ EX namespace heat { } } - offscreen_heat = move(offscreen2); + offscreen_heat = std::move(offscreen2); for(int i=0; i S7) remove_half_dimension(); diff --git a/drawing.cpp b/drawing.cpp index 17ddc267..96921ec1 100644 --- a/drawing.cpp +++ b/drawing.cpp @@ -2206,13 +2206,13 @@ EX void sort_drawqueue() { #if MINIMIZE_GL_CALLS map>> subqueue; - for(auto& p: ptds) subqueue[(p->prio == PPR::CIRCLE || p->prio == PPR::OUTCIRCLE) ? 0 : p->outline_group()].push_back(move(p)); + for(auto& p: ptds) subqueue[(p->prio == PPR::CIRCLE || p->prio == PPR::OUTCIRCLE) ? 0 : p->outline_group()].push_back(std::move(p)); ptds.clear(); - for(auto& p: subqueue) for(auto& r: p.second) ptds.push_back(move(r)); + for(auto& p: subqueue) for(auto& r: p.second) ptds.push_back(std::move(r)); subqueue.clear(); - for(auto& p: ptds) subqueue[(p->prio == PPR::CIRCLE || p->prio == PPR::OUTCIRCLE) ? 0 : p->color].push_back(move(p)); + for(auto& p: ptds) subqueue[(p->prio == PPR::CIRCLE || p->prio == PPR::OUTCIRCLE) ? 0 : p->color].push_back(std::move(p)); ptds.clear(); - for(auto& p: subqueue) for(auto& r: p.second) ptds.push_back(move(r)); + for(auto& p: subqueue) for(auto& r: p.second) ptds.push_back(std::move(r)); #endif for(auto& p: ptds) { @@ -2233,7 +2233,7 @@ EX void sort_drawqueue() { vector> ptds2; ptds2.resize(siz); - for(int i = 0; iprio)]++] = move(ptds[i]); + for(int i = 0; iprio)]++] = std::move(ptds[i]); swap(ptds, ptds2); } diff --git a/environment.cpp b/environment.cpp index 2bb2bad8..3e1c241d 100644 --- a/environment.cpp +++ b/environment.cpp @@ -859,7 +859,7 @@ EX void monstersTurn() { changes.value_keep(crush_now); changes.value_keep(crush_next); - crush_now = move(crush_next); + crush_now = std::move(crush_next); crush_next.clear(); DEBB(DF_TURN, ("heat")); diff --git a/expansion.cpp b/expansion.cpp index 60a534f9..57961ba8 100644 --- a/expansion.cpp +++ b/expansion.cpp @@ -190,7 +190,7 @@ void expansion_analyzer::reduce_grouping() { for(int i=0; i bestval) bestval = mindist, s.owner = c, s.p = h, s.relmatrices = move(relmatrices); + if(mindist > bestval) bestval = mindist, s.owner = c, s.p = h, s.relmatrices = std::move(relmatrices); } } make_cells_of_heptagon(); diff --git a/mapeditor.cpp b/mapeditor.cpp index 44c65867..6ce2d700 100644 --- a/mapeditor.cpp +++ b/mapeditor.cpp @@ -2371,7 +2371,7 @@ EX namespace mapeditor { } if(uni == 'c') dsCur->list.push_back(best); else if(uni == 'd') { - vector oldlist = move(dsCur->list); + vector oldlist = std::move(dsCur->list); dsCur->list.clear(); int i; for(i=0; i>>> xptds; for(int i=0; i<4; i++) for(auto& p: subscr[i]) - xptds[int(p->prio)][i].push_back(move(p)); + xptds[int(p->prio)][i].push_back(std::move(p)); for(auto& sm: xptds) for(auto& sm2: sm.second) { int i = sm2.first; ptds.clear(); - for(auto& p: sm2.second) ptds.push_back(move(p)); + for(auto& p: sm2.second) ptds.push_back(std::move(p)); pconf.scale = .5; pconf.xposition = (!(i&2)) ? xdst : -xdst; diff --git a/rogueviz/dynamic-wfc.cpp b/rogueviz/dynamic-wfc.cpp index 3cfb792c..8ddad074 100644 --- a/rogueviz/dynamic-wfc.cpp +++ b/rogueviz/dynamic-wfc.cpp @@ -313,7 +313,7 @@ void wfc() { nfreq.emplace_back(p); nfreq.back().code |= (code_t(c) << sh); } - freq = move(nfreq); + freq = std::move(nfreq); nfreq = {}; // println(hlog, "inpath = ", inpath); // println(hlog, "freqs = ", isize(freq)); diff --git a/rogueviz/gobot.cpp b/rogueviz/gobot.cpp index 0d01a18a..ef7fe285 100644 --- a/rogueviz/gobot.cpp +++ b/rogueviz/gobot.cpp @@ -157,8 +157,8 @@ void clean_old_shots() { sh.get().delete_message(); } else - remaining.emplace_back(move(sh)); - old_shots = move(remaining); + remaining.emplace_back(std::move(sh)); + old_shots = std::move(remaining); */ } diff --git a/rogueviz/som/kohonen.cpp b/rogueviz/som/kohonen.cpp index 19d45931..10c9407d 100644 --- a/rogueviz/som/kohonen.cpp +++ b/rogueviz/som/kohonen.cpp @@ -91,7 +91,7 @@ void loadsamples(const string& fname) { if(c == '!' && s.name == "") shown = true; else if(!rv_ignore(c)) s.name += c; } - data.push_back(move(s)); + data.push_back(std::move(s)); if(shown) samples_to_show.push_back(isize(data)-1); } @@ -624,7 +624,7 @@ void verify_crawlers() { breakcheck: cellcrawler cr; cr.build(cellwalker(c, id.second)); - allcrawlers[id.first] = move(cr); + allcrawlers[id.first] = std::move(cr); uniq++; } } diff --git a/rogueviz/som/tests.cpp b/rogueviz/som/tests.cpp index 261927b0..f4579e20 100644 --- a/rogueviz/som/tests.cpp +++ b/rogueviz/som/tests.cpp @@ -97,7 +97,7 @@ void create_data() { where.push_back(c); sample s; embeddings::get_coordinates(s.val, c, c0); - data.push_back(move(s)); + data.push_back(std::move(s)); } samples = isize(data); test_orig.size = samples; diff --git a/surface.cpp b/surface.cpp index 2bca9180..a29a43a5 100644 --- a/surface.cpp +++ b/surface.cpp @@ -480,8 +480,8 @@ void run_kuen() { int it = 0; for(auto p: rug::points) p->dexp_id = it++; - vector mesh = move(rug::points); - vector old_triangles = move(rug::triangles); + vector mesh = std::move(rug::points); + vector old_triangles = std::move(rug::triangles); rug::clear_model(); diff --git a/textures.cpp b/textures.cpp index 5a747348..c52aed0e 100644 --- a/textures.cpp +++ b/textures.cpp @@ -979,7 +979,7 @@ string tes; void init_textureconfig() { #if CAP_CONFIG - texturesavers = move(savers); + texturesavers = std::move(savers); for(int i=0; i<3; i++) for(int j=0; j<3; j++) addsaver(config.itt[i][j], "texturematrix_" + its(i) + its(j), i==j ? 1 : 0); @@ -1131,10 +1131,10 @@ bool texture_config::load() { models::configure(); drawthemap(); config.tstate = config.tstate_max = tsActive; - string s = move(texture_tuner); + string s = std::move(texture_tuner); perform_mapping(); - texture_tuner = move(s); + texture_tuner = std::move(s); if(texture_tuner != "") { texture_tuned = true; @@ -1665,7 +1665,7 @@ void texture_config::true_remap() { if(GOLDBERG || IRREGULAR) pshift += si.dir; mapTexture(c, mi2, si, ggmatrix(c), pshift); mapTexture2(mi2); - mi2.tvertices = move(new_tvertices); + mi2.tvertices = std::move(new_tvertices); // printf("%08x remapping %d vertices to %d vertices\n", si.id, isize(mi.tvertices), isize(mi2.tvertices)); } catch(out_of_range&) {