I know that there's already been a thread like this but I've tried everything that was suggested and the error is still showing in the editor but the solution compiles okay. My problem might be a bit different though.
I have a function called getCurrentTime
with the same name, defined in two separate files and inherited to different classes. This is how it looks:
NetworkClientState
uses getCurrentTime
from the NetworkClient
base class.
GameClient
as well as LinearPrediction
and QuadraticPrediction
all use getCurrentTime
define in the Prediction
base class.
Intellisense persist on underscoring Prediction::getCurrentTime
but the program compiles and runs. Although it will say that getCurrentTime
is ambiguous if I get rid of using NetworkClient::getCurrentTime
.
What could I do to get rid of this Intellisense error?