In the example below, the SFML object 'content' is not being recognized by CB:
sf::Sprite content {texture.getTexture()};
That is, it does not appear in the auto-complete lists, though it is compiled normally.
However if the argument is in parentheses, or there is no argument, CB identifies the object correctly.
sf::Sprite content (sf::Texture);
Is this a bug, right?
Sadly C++11 support for CodeCompletion is next to non-existent so it usually breaks when using C++11 features.
So, there is no solution for this?