Skip to content

Commit 1927422

Browse files
committed
Try with something actually movable
1 parent 4427234 commit 1927422

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/output-flex.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ int output_flex_t::geom_split_multi()
10831083

10841084
lua_createtable(lua_state(), (int)geoms.size(), 0);
10851085
int n = 0;
1086-
for (auto const &g : geoms) {
1086+
for (auto&& g : geoms) {
10871087
lua_pushinteger(lua_state(), ++n);
10881088
create_lua_geometry_object(lua_state(), [&](geom::geometry_t *geom) {
10891089
*geom = std::move(g);

0 commit comments

Comments
 (0)