MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / _removeMountFromList

Method _removeMountFromList

Engine/source/core/volume.cpp:530–542  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

528}
529
530FileSystemRef MountSystem::_removeMountFromList(String root)
531{
532 for (Vector<MountFS>::iterator itr = mMountList.begin(); itr != mMountList.end(); itr++)
533 {
534 if (root.equal( itr->root, String::NoCase ))
535 {
536 FileSystemRef fs = itr->fileSystem;
537 mMountList.erase(itr);
538 return fs;
539 }
540 }
541 return NULL;
542}
543
544FileSystemRef MountSystem::_getFileSystemFromList(const Path& path) const
545{

Callers

nothing calls this directly

Calls 4

beginMethod · 0.45
endMethod · 0.45
equalMethod · 0.45
eraseMethod · 0.45

Tested by

no test coverage detected