| 16 | #endif |
| 17 | |
| 18 | SC::FileSystemWatcher::FolderWatcher::FolderWatcher(Span<char> buffer) |
| 19 | { |
| 20 | #if SC_PLATFORM_LINUX |
| 21 | subFolderRelativePathsBuffer = buffer; |
| 22 | #else |
| 23 | (void)buffer; |
| 24 | #endif |
| 25 | } |
| 26 | |
| 27 | SC::Result SC::FileSystemWatcher::init(EventLoopRunner& runner) { return internal.get().init(*this, runner); } |
| 28 |
nothing calls this directly
no outgoing calls
no test coverage detected