| 61 | } |
| 62 | |
| 63 | void NetStringTable::incStringRefScript(U32 id) |
| 64 | { |
| 65 | AssertFatal(table[id].refCount != 0 || table[id].scriptRefCount != 0 , "Cannot inc ref count from zero."); |
| 66 | table[id].scriptRefCount++; |
| 67 | } |
| 68 | |
| 69 | U32 NetStringTable::addString(const char *string) |
| 70 | { |
no outgoing calls
no test coverage detected