I've a pair pure virtual function defined inside a c++ class, which I've overloaded. Code snippet below::
virtual uint64_t Abc::GetValue()=0;
virtual uint32_t Abc::GetValue()=0;
Here, the only difference in function signature is the return type of GetVal() "uint32_t
" & "uint64_t
"..
It's throwing compilation error that this can't be overloaded.
Plz help me on this.