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.?

link|improve this question

0% accept rate
feedback

3 Answers

You don't need to remove the const to get working code, but the code would most certainly be better without the pointless const. That's what the "warning" word in front of the "error" says, too.

link|improve this answer
I understand that. Is the const here really not needed ? I think that it returns a unmodifiable pointer to a class. (i.e) we can not change the pointer. but we can change the contents – Sudhakar Jan 23 at 10:53
And what do you do with that pointer that's returned? You assign it to some variable. It's the type of that variable that matters. – Asya Kamsky Jan 24 at 14:35
feedback

The const in the return type (MyClass* const) is indeed completely pointless. At the same time, it does no harm other than making the code more verbose. I personally would remove it.

To understand why it's pointless, consider the following:

MyClass* p = Func(statement);

What difference did the const make?

In other words, returning T* const is conceptually no different to returning const int.

link|improve this answer
any commnets on the following ? Does the same applies the following as well ? here also I am getting the coverity warning. static char const * const GetInstanceName( InstanceId Id ) ; inline const GraphicClass *const GetLogo() const; – Sudhakar Jan 23 at 12:18
@Sudhakar: It does. In each of the declarations, one of the consts is pointless. – aix Jan 23 at 12:19
Thank you. this info was helpful. – Sudhakar Jan 23 at 14:51
feedback

The warning is correct. The MyClass* const is not needed. It should be MyClass* simply. However, you don't need to remove it, but you should remove it.

The reason is, theoretically MyClass* const would prevent the return value of Func() from being edited. But that is anyway not editable even without const, as it's not an lvalue.See the demo here. So with/without const, the compiler will always generate error, for an attempt to modify the return value of Func().

link|improve this answer
Thanks for the nice explanation. Does the same applies the following as well ? here also I ma getting the coverity warning.static char const * const GetInstanceName( InstanceId Id ) ; inline const GraphicClass *const GetLogo() const; – Sudhakar Jan 23 at 11:35
static char const * const GetInstanceName( InstanceId Id ) ; inline const GraphicClass *const GetLogo() const; – Sudhakar Jan 23 at 11:36
@Sudhakar, yes. Return type pointer is not an lvalue, so compiler will take care of making it unassignable. You don't need to make it const. – iammilind Jan 23 at 14:05
Thank you. this info was helpful. – Sudhakar Jan 23 at 14:52
1  
If it was helpful, you might want to accept the answer. This is of course up to you. – Bart Jan 30 at 14:41
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.