MyClass* const Func(const std::string& statename)
for this coverity is giving the error
Parse warning (PW.USELESS_TYPE_QUALIFIER_ON_RETURN_TYPE) type qualifier on return type is meaningless .
Do we really need to remove the const here.?
for this coverity is giving the error
Do we really need to remove the const here.?
| ||||
|
feedback
|
|
You don't need to remove the | |||||
feedback
|
|
The To understand why it's pointless, consider the following:
What difference did the In other words, returning | |||||||
feedback
|
|
The warning is correct. The The reason is, theoretically | |||||||||||||
feedback
|