Possible Duplicate:
What exactly is nullptr?
I first thought it's a keyword. My present gcc doesn't highlight nullptr in a different shade. To verify that, I wrote following:
void *&p = nullptr;
So I got some clue from the error that:
error: invalid initialization of non-const reference of type ‘void*&’ from an rvalue of type ‘std::nullptr_t’
If nullptr is an object then is it really a pointer equivalent of simple 0? In other word, suppose I write:
#define NULL nullptr
Is the above statement doesn't alter anything in my code ? Also, it would be interesting to know other use cases for std::nullptr_t type as such.
gcc doesn't highlight==>VIM editor doesn't highlight in gcc:) – iammilind Jul 12 '11 at 12:36nullptr. gcc is a compiler; the only presentation from the compiler are the error and warnings that result from compilation; hopefully, there are none. It is your editor is that is going to highlight nullptr. It shouldn't be all that surprising your editor isn't up to speed with the new standard because the new standard doesn't really exist yet, at least not officially. That's why it is still called C++0x rather than C++11. – David Hammen Jul 12 '11 at 12:36