T
Tim Partridge
Why would this be illegal?
#include <list>
using namespace std;
int main ( char argc, char* argv[] ) {
list< const int * const > l;
return 0;
}
Doesn't it make sense to be able to have a list of constant pointers that
point to constant objects, or am I missing something?
Clueless,
Tim Partridge
#include <list>
using namespace std;
int main ( char argc, char* argv[] ) {
list< const int * const > l;
return 0;
}
Doesn't it make sense to be able to have a list of constant pointers that
point to constant objects, or am I missing something?
Clueless,
Tim Partridge