The overload Anachronism

The beginning versions of C++ contained the key word overload. Functions which were overloaded had to explicitly use the keyword overload, like this:
overload MyFunc();
But for contempory C++ code, the overload is no longer needed. Contemporary C++ compilers will compile code with the overload keyword. The overload keyword is considered anachronistic and should not be used in contemporary code.