Ignore:
Timestamp:
Jan 18, 2006 11:32:27 PM (18 years ago)
Author:
bennylp
Message:

Fixed minor warnings/mismatched comments mainly in pjlib++

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj++/string.hpp

    r65 r122  
    345345 
    346346    // 
     347    // Assign from char* 
     348    // 
     349    Pj_String& operator=(char *s) 
     350    { 
     351        set(s); 
     352        return *this; 
     353    } 
     354 
     355    /// 
     356    // Assign from another Pj_String 
     357    // 
     358    Pj_String& operator=(Pj_String &rhs) 
     359    { 
     360        set(rhs); 
     361        return *this; 
     362    } 
     363 
     364    // 
    347365    // Find a character in the string. 
    348366    // 
     
    416434    } 
    417435 
    418  
    419 private: 
    420     //Pj_String(const Pj_String &rhs) {} 
    421     void operator=(const Pj_String &rhs) { pj_assert(false); } 
    422436}; 
    423437 
Note: See TracChangeset for help on using the changeset viewer.