Tagged Questions

34
votes
6answers
8k views

What exactly is nullptr in C++0x?

Most of C++ programmers are waiting for C++0x. An interesting feature and a confusing one (at least for me) is the new nullptr. Well, no need anymore for the nasty macro NULL. int* x = nullptr; ...
30
votes
4answers
4k views

Can nullptr be emulated in gcc?

I saw that nullptr was implemented in Visual Studio 2010. I like the concept and want to start using it as soon as possible; however GCC does not support it yet. My code needs to run on both (but ...
13
votes
6answers
435 views

Is it safe to #define NULL nullptr?

I have seen below macro in many topmost header files: #define NULL 0 // C++03 In all over the code, NULL and 0 are used interchangeably. If I change it to. #define NULL nullptr // C++11 Will ...
4
votes
2answers
120 views

“Backporting” nullptr to C++-pre-C++0x programs

More or less what the title suggests. While I'm not yet using C++0x I'd like to be prepared for when it happens, and I'd also like to reduce the amount of code I have to rewrite to use some of its ...
3
votes
3answers
573 views

Is NULL defined as nullptr in C++11?

Will C++11 implementations define NULLas nullptr? Would this be prescribed by the new C++ standard?
3
votes
3answers
314 views

Perfectly emulate nullptr

I got tired of waiting for compiler support of nullptr (gcc 4.6 does but it's so new few distributions support it). So as a stop gap until nullptr is fully supported I decided to emulate it. There ...
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 ...
2
votes
1answer
78 views

using nullptr instead of NULL when mixing C and C++

i have a very simple question... i am using the SDL API which was written in C. i am using C++. my compiler supports the keyword nullptr, and I've been reading up on it. it seems as if it is ...
2
votes
2answers
118 views

Using nullptr in API function calls?

Using C++ with Visual Studio 2010. I'm in the process of converting my NULL's to nullptr's. With my code this is fine. However if I make a call to an win api such as: __checkReturn WINOLEAPI ...
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?
1
vote
3answers
187 views

C++: Cannot instantiate a pointer directly

This is an SDL problem, however I have the strong feeling that the problem I came across is not related to SDL, but more to C++ / pointers in general. To make a long story short, this code doesn't ...
0
votes
1answer
824 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 ...