1
SFML projects / Re: 'Tiled' Tile-map Loader
« on: May 13, 2015, 07:32:56 pm »Quote
The problem might be that the code is relying on implicit conversions. Make sure that the arguments provided to std::make_share have exactly the same types as the parameters in the constructor, and that there are no ambiguous constructor overloads. (Although I would expect a slightly different error message for that, too...)
Or maybe you have a crippled std::make_shared() implementation (before variadic templates), which supports only one argument?
I was thinking that too, I started looking at the tmxloader code base a bit last night to see if it was mix matched somehow.
Keep in mind, this is me just clone the repo, generating the Xcode template via cmake, and trying to compile it. I have done no code changes, left it completely as is.