Changeset 1483:743bfb177bc4


Ignore:
Timestamp:
08/29/10 12:44:17 (18 months ago)
Author:
niam
Branch:
default
Message:

[string] hide destructor

Location:
sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sources/include/libdodo/string.h

    r1461 r1483  
    8484         * destructor 
    8585         */ 
    86         ~string() { delete buf; } 
     86        ~string(); 
    8787 
    8888        /** 
  • sources/src/string.cc

    r1461 r1483  
    116116//------------------------------------------------------------------- 
    117117 
     118string::~string() 
     119{ 
     120    delete [] buf; 
     121} 
     122 
     123//------------------------------------------------------------------- 
     124 
    118125void 
    119126string::erase(unsigned long index, 
Note: See TracChangeset for help on using the changeset viewer.