Changeset 955 for cpp/frams/util/sstring.cpp
- Timestamp:
- 06/25/20 00:34:29 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/util/sstring.cpp
r897 r955 127 127 } 128 128 129 SString::SString(int x)130 {131 buf = new SBuf(x);132 }133 134 129 SString::SString(const char *t, int t_len) 135 130 { … … 157 152 REF_UNLOCK; 158 153 } 154 } 155 156 SString::SString(char in) 157 { 158 initEmpty(); 159 copyFrom(&in, 1); 159 160 } 160 161
Note: See TracChangeset
for help on using the changeset viewer.