| 9 | namespace filesystem { |
| 10 | |
| 11 | FileDescriptorTable::FileDescriptorTable() |
| 12 | : table_{}, open_count_(0), lock_{"fd_table"} {} |
| 13 | |
| 14 | FileDescriptorTable::~FileDescriptorTable() { |
| 15 | CloseAll().or_else([](auto&& err) { |
nothing calls this directly
no outgoing calls
no test coverage detected