Fix FileWatcher header file

This commit is contained in:
Ted John 2020-04-26 13:55:12 +01:00
parent 2d43ac5936
commit 51ed760409
1 changed files with 2 additions and 2 deletions

View File

@ -25,10 +25,10 @@ class FileWatcher
{
private:
std::thread _watchThread;
#ifdef _WIN32
#if defined(_WIN32)
std::string _path;
HANDLE _directoryHandle{};
#else
#elif defined(__linux__)
struct FileDescriptor
{
int Fd = -1;