--------------------------------------------------------------------------
| 221 | |
| 222 | //-------------------------------------------------------------------------- |
| 223 | U32 PathManager::allocatePathId() |
| 224 | { |
| 225 | mPaths.increment(); |
| 226 | mPaths.last() = new PathEntry; |
| 227 | |
| 228 | return (mPaths.size() - 1); |
| 229 | } |
| 230 | |
| 231 | |
| 232 | void PathManager::updatePath(const U32 id, |
no test coverage detected