Why does the following program give a warning?

Note: Its obvious that sending a normal pointer to a function requiring const pointer does not give any warning.

#include <stdio.h>
void sam(const char **p) { }
int main(int argc, char **argv)
{
    sam(argv);
    return 0;
}

I get the following error,

In function `int main(int, char **)':
passing `char **' as argument 1 of `sam(const char **)' 
adds cv-quals without intervening `const'
link|improve this question

1  
Is your compiler reporting an error or a warning? (and, if it is reporting just a warning, what compiler are you using? It should report an error) – James McNellis Aug 4 '10 at 23:43
@James: My compiler[gcc version 2.95.3] is throwing an error. Will edit the question right away. Thanks for the notification. – Prabhu Jayaraman Aug 4 '10 at 23:51
2  
@Prabhu: Ah, ok. I had initially thought it might be an old version of Visual C++ (not that I think Visual C++ is lacking in its standards conformance... not at all... nope...). – James McNellis Aug 4 '10 at 23:53
1  
I'm no C++ expert but I will note that your compiler is almost 10 years old. :-) – Ken Aug 4 '10 at 23:55
1  
I am using gcc 4.1.2 (released February 13, 2007), and it gives me a Warning? – Kedar Aug 5 '10 at 6:51
show 1 more comment
feedback

1 Answer

up vote 11 down vote accepted

This code violates const correctness.

The issue is that this code is fundamentally unsafe because you could inadvertently modify a const object. The C++ FAQ Lite has an excellent example of this in the answer to "Why am I getting an error converting a Foo**Foo const**?"

class Foo {
 public:
   void modify();  // make some modify to the this object
 };

 int main()
 {
   const Foo x;
   Foo* p;
   Foo const** q = &p;  // q now points to p; this is (fortunately!) an error
   *q = &x;             // p now points to x
   p->modify();         // Ouch: modifies a const Foo!!
   ...
 }

(Example from Marshall Cline's C++ FAQ Lite document, www.parashift.com/c++-faq-lite/)

You can fix the problem by const-qualifying both levels of indirection:

void sam(char const* const* p) { }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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