Skip to content

Commit

Permalink
removed the illegal qualified name in member declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
Rúben Moreira authored and Rúben Moreira committed Jul 4, 2024
1 parent 2e9481d commit 48fc41c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
],
"msvs_settings": {
"VCCLCompilerTool": {
"DisableSpecificWarnings": [ "4506", "4538", "4793", "4596" ]
"DisableSpecificWarnings": [ "4506", "4538", "4793" ]
},
"VCLinkerTool": {
"AdditionalOptions": [ "/ignore:4248" ]
Expand Down
6 changes: 3 additions & 3 deletions includes/win32/Watcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ class Watcher
void resizeBuffers(std::size_t size);

std::string getUTF8Directory(std::wstring path) ;
bool Watcher::isExcluded(const std::wstring &fileName);
bool isExcluded(const std::wstring &fileName);

std::wstring Watcher::getWatchedPathFromHandle();
void Watcher::checkWatchedPath();
std::wstring getWatchedPathFromHandle();
void checkWatchedPath();

std::atomic<bool> mRunning;
SingleshotSemaphore mHasStartedSemaphore;
Expand Down

0 comments on commit 48fc41c

Please sign in to comment.