Apparently, it is possible to declare a function returning const void:

const void foo()
{
}

g++ seems to consider the const important, because the following code does not compile:

#include <type_traits>

static_assert(std::is_same<void(), const void()>::value, "const matters");

So does const void have any practical significance?

link|improve this question

13  
+1 for WTF moment. – delnan Feb 20 '11 at 15:36
5  
Without knowing any specifics, I'd say that it's there for orthogonality reasons. Imagine a meta-function that takes the replaces the type, but not the qualifier. It would work with all types, except void if the void could implicitly be stripped away. – ltjax Feb 20 '11 at 15:40
1  
I'm now curious into what led to this discovery. :) Playing with your compiler's intermediate output, are we? – Tim Post Feb 20 '11 at 15:49
@Tim: I was trying to decide where to put the const in a function pointer lookup table. There were three possible locations. One of them failed to compile, and the outermost const clearly declared an array of pointers to functions returning const void, and I was surprised the compiler accepted that code. – FredOverflow Feb 20 '11 at 15:52
feedback

1 Answer

up vote 23 down vote accepted

Not really. But to ignore cv-qualifications on void or to make them errors could create unnecessary complexity in terms of both compiler implementation and end-user code. Consider templates like

  template<typename T>
  const T ...

There's no reason to make using void in that scenario a special case (more than it already is), it would just create headaches.

Also, while const void isn't helpful, const void* has its uses.

link|improve this answer
How useful is const void *? I can see how void * const could be, but not the former. – Spidey Mar 20 at 12:56
You can use it to preserve the (intended) const-ness when round tripping through void* land. string read_name(enum dynamic_type, const void*). It's not super useful, no, but more so than const void. And of course void* const is useful but that's not really germane to the question. – Logan Capaldo Mar 20 at 14:01
feedback

Your Answer

 
or
required, but never shown

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