Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
6answers
9k 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 ...
16
votes
6answers
616 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 ...
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 ...
6
votes
1answer
2k views

What header file needs to be included for using nullptr in g++?

I am using g++ 4.4.1 and want to use nullptr, but I am not being able to find which header file is required to be included. It does not seem to be keyword either, because my attempt to use it is ...
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
577 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
315 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
512 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
79 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
119 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 ...
2
votes
1answer
68 views

pointers and .net pointers

I heard that NULL is equivalent to .net nullptr and that 0 is not equivalent to .net nullptr. why? I thought that NULL is a macro equal to 0 ?
1
vote
5answers
283 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
827 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 ...