Changeset 1048


Ignore:
Timestamp:
Feb 7, 2008, 2:04:26 PM (16 years ago)
Author:
Peter
Message:

well, make it English...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/yat/utility/SmartPtr.h

    r1044 r1048  
    6464    virtual ~SmartPtr()
    6565    {
    66       deattach();
     66      detach();
    6767    }
    6868
     
    7575    {
    7676      if (pointee_!=rhs.pointee_){
    77         deattach();
     77        detach();
    7878        pointee_ = rhs.pointee_;
    7979        ref_count_= rhs.ref_count_;
     
    104104    u_int* ref_count_;
    105105
    106     void deattach(void)
     106    void detach(void)
    107107    {
    108108      if (ref_count_)
Note: See TracChangeset for help on using the changeset viewer.