Hi!
After some SFML usage I noticed that I can compile this:
sf::Vector2f(4, 4) + sf::Vector2f(2, 2)
but I can't compile this:
sf::Vector2f(4, 4) / sf::Vector2f(2, 2) //i get some errors here saying that operator "/" is not overloaded
The question is simple: how can I correct it or is it a feature?
P.S
my IDE is Visual Studio 2015