imagenetics
Programmer
I have a question about functions preceded with double colon ("::"). Sometimes I find two source files and in one of them the function is preceded with double colon while in other file the same function is not. In both cases the result of the function is the same.
What is the difference between, fo example int someValue = ::GetValue(); and int someValue = GetValue();?
What is the difference between, fo example int someValue = ::GetValue(); and int someValue = GetValue();?