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?
constin a function pointer lookup table. There were three possible locations. One of them failed to compile, and the outermostconstclearly declared an array of pointers to functions returningconst void, and I was surprised the compiler accepted that code. – FredOverflow Feb 20 '11 at 15:52