| 150 | struct HxString |
| 151 | { |
| 152 | inline HxString(const HxString &inRHS) |
| 153 | { |
| 154 | length = inRHS.length; |
| 155 | __s = inRHS.__s; |
| 156 | } |
| 157 | inline HxString() : length(0), __s(0) { } |
| 158 | inline HxString(const char *inS,int inLen=-1, bool inAllocGcString=true); |
| 159 | inline int size() const { return length; } |
nothing calls this directly
no outgoing calls
no test coverage detected