| 90 | } |
| 91 | |
| 92 | FatFsFileSystem::FatFsFileSystem(uint8_t volume_id) |
| 93 | : volume_id_(volume_id), |
| 94 | fatfs_obj_{}, |
| 95 | inodes_{}, |
| 96 | fil_pool_{}, |
| 97 | dir_pool_{}, |
| 98 | inode_ops_(this), |
| 99 | file_ops_(this) {} |
| 100 | |
| 101 | FatFsFileSystem::~FatFsFileSystem() { |
| 102 | if (mounted_) { |
nothing calls this directly
no outgoing calls
no test coverage detected