So I have been programming a game with no issues with SFML till now.
My code is
sf::String random;
random.SetText("Hello");
And I get the error, 'class sf::String' has no member named 'SetText' but the documentation for sf::String claims it does, I get the same error if I try to call any of the strings class members or if I try to use the sf::String constructor.
Edit: Incase you are wondering yes I did #include <SFML/System.hpp>
Is this a common error?