Forums before death by AOL, social media and spammers... "We can't have nice things"
|    comp.lang.c++.moderated    |    Moderated discussion of C++ superhackery    |    33,346 messages    |
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
|    Message 33,167 of 33,346    |
|    Greg Marr to All    |
|    Re: Does std::unique_ptr support self-re    |
|    12 Aug 13 10:48:01    |
   
   From: gregmmarr@googlemail.com   
      
   On Monday, August 12, 2013 10:23:38 AM UTC-4, SG wrote:   
   > Actually, this looks good to me. It does not support self-reset but it   
   > does not have to according to the standard. What do you think is   
   > non-conforming about it?   
      
   It does support self-reset, exactly as does the MSVC implementation   
   that Daniel Krugler said is non-conforming, because it doesn't   
   call get_deleter()(old_value) if the old value and the new value   
   are the same.   
      
   This is different than the reset() later in the same file, which is   
      
    void   
    reset(pointer __p = pointer()) noexcept   
    {   
    using std::swap;   
    swap(std::get<0>(_M_t), __p);   
    if (__p != nullptr)   
    get_deleter()(__p);   
    }   
      
   The difference is   
    if (__p != nullptr)   
   vs   
    if (__p != pointer())   
      
      
   --   
    [ See http://www.gotw.ca/resources/clcm.htm for info about ]   
    [ comp.lang.c++.moderated. First time posters: Do this! ]   
      
   --- SoupGate-Win32 v1.05   
    * Origin: you cannot sedate... all the things you hate (1:229/2)   
|
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
(c) 1994, bbs@darkrealms.ca