non-member function cannot have cv-qualifier

While writing the following function abs, I get the error:

non-member function unsigned int abs(const T&) cannot have cv-qualifier.

template<typename T>
inline unsigned int abs(const T& t) const
{ return t>0?t:-t;
}

After removing the const qualifier for the function there is no error. Since I am not modifying t inside the function the above code should have compiled. I am wondering why I got the error?

4 Answers

Your desire not to modify t is expressed in const T& t. The ending const specifies that you will not modify any member variable of the class abs belongs to.

Since there is no class where this function belongs to, you get an error.

2

The const modifier at the end of the function declaration applies to the hidden this parameter for member functions.

As this is a free function, there is no this and that modifier is not needed.

The t parameter already has its own const in the parameter list.

The cv-qualifier on a member function specifies that the this pointer is to have indirected type const (or volatile, const volatile) and that therefore the member function can be called on instances with that qualification.

Free functions (and class static functions) don't have a this pointer.

1

As we all know, const keyword followed after the argument list indicates that this is a pointer to a pointer constant.

There is a non-member function, it does not belong to the class, so add const opposite end error occurs.

Solution to the problem: is to either become a class member function or remove the const keyword const opposite end

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like