| 7375 | static constexpr uint16_t STATIC_SIZE = 8 + 8 + BincodeBytes::STATIC_SIZE; // fileId + ownerId + name |
| 7376 | |
| 7377 | LinkFileEntry() { clear(); } |
| 7378 | explicit LinkFileEntry(InodeId fileId_, InodeId ownerId_, BincodeBytes&& name_) : fileId(fileId_), ownerId(ownerId_), name(std::move(name_)) {} |
| 7379 | LinkFileEntry(const LinkFileEntry&) = default; |
| 7380 | LinkFileEntry& operator=(const LinkFileEntry&) = default; |
nothing calls this directly
no outgoing calls
no test coverage detected