Tagged Questions
10
votes
1answer
119 views
Strong typing of nullptr?
I just read an article on the C++0x standard: http://www.softwarequalityconnection.com/2011/06/the-biggest-changes-in-c11-and-why-you-should-care/
It said nullptr was strongly typed, meaning that it ...
3
votes
1answer
509 views
What C++0x Headers are supposed to define nullptr?
Now that C++0x is almost here, I've been experimenting with it, and in particular using nullptr. I haven't been able to figure out what standard header files one is supposed to include if one needs to ...
1
vote
5answers
281 views
Is nullptr not a special keyword and an object of std::nullptr_t? [closed]
Possible Duplicate:
What exactly is nullptr in C++0x?
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 ...
1
vote
2answers
194 views
Should this use of nullptr produce a compiler error?
Is there a good reason why this code compiles without warning (and crashes when run) with Visual C++ 2010:
int a = *((int*)nullptr);
Static analysis should conclude that it will crash, right?
0
votes
1answer
825 views
How to enable nullptr from C++0x in the Visual C++ 2010?
I wonder how can I enable the nullptr in the just released Visual Studio 2010. (C++ project, not managed).
This is one of the new features but it is not available by default and looking inside the ...