alacarte-maps / alacarte

Renderer for OpenStreetMap tiles.
https://alacarte-maps.github.io/
Other
58 stars 18 forks source link

include std::array to fix building error #107

Closed a-andreyev closed 6 years ago

a-andreyev commented 6 years ago

without this I'm not able to build master branch. With this include it's building and working

SrTobi commented 6 years ago

I get the same error. The question is why are we not using std::array (then <array> has to be included). I did a quick compile and it compiles with boost::asio. Tests are passing as well... do we even have tests for the server? 😃

florianjacob commented 6 years ago

@Scheirle as boost::array is only used in http_request.hpp, I'm assigning you. Do you have any objections on it being replaced with an std::array?

@a-andreyev thanks for your contribution & interest. 😄 👍 Do you want to extend it a little and replace boost::array with std::array?

a-andreyev commented 6 years ago

moved from boost to std array, building and running too, thanks for the hint @SrTobi

Scheirle commented 6 years ago

Thanks @a-andreyev. Apologies for the delay!