CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: nullptr

  1. #1
    Join Date
    Dec 2008
    Posts
    1

    nullptr

    I noticed that nullptr (probably) isn't going to happen for VS2010. I was wondering if anyone would like to elaborate on the decision process here. I'm assuming that it's easy to implement but overall, doesn't provide significant value to be worth the cost to ship it, though I could be wrong.

  2. #2
    Join Date
    May 2006
    Posts
    22

    Re: nullptr

    When we started the Dev10 planning process 'nullptr' was still under active discussion by the C++ Committee (it is funny how sometimes the smallest features can take up so much time) and we didn't want to risk having the feature change as we were implementing it (or worse change after we had shipped it). We also felt that the overall benefits provided by nullptr weren't signifcant enough to warrant spending effort on it - we felt that auto, lambdas, rvalue-references, decltype, etc. provided much more "bang-for-the-buck". So yes your reasoning is at least partially correct.
    Jonathan Caves
    Visual C++ Compiler Team

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured