mapbox / geojson-cpp

A C++14 library for converting GeoJSON into geometry.hpp representation
ISC License
66 stars 27 forks source link

Avoid copies #5

Closed jfirebaugh closed 8 years ago

jfirebaugh commented 8 years ago

The temporaries here prevented the move version of push_back from being used.

mourner commented 8 years ago

Oh. I thought making them const references would trigger move. Does it move only when you construct in place?