We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Original report by Petr Vanek (Bitbucket: pvanek, GitHub: pvanek).
current master branch. I got a lookup error when I tried to get directories list:
undefined symbol: _ZN4efsw11FileWatcher11directoriesEv
current quick fix resolved it for me:
#!diff pvanek@stimpy:~/oss/fsevents/efsw/src/efsw> hg diff diff -r d91c3d60171e src/efsw/FileWatcher.cpp --- a/src/efsw/FileWatcher.cpp Wed Nov 27 22:43:35 2013 -0300 +++ b/src/efsw/FileWatcher.cpp Mon Dec 16 15:59:52 2013 +0100 @@ -102,6 +102,11 @@ mImpl->watch(); } +std::list<std::string> FileWatcher::directories() +{ + return mImpl->directories(); +} + void FileWatcher::followSymlinks( bool follow ) { mFollowSymlinks = follow;
The text was updated successfully, but these errors were encountered:
Original comment by Martín Lucas Golini (Bitbucket: SpartanJ, GitHub: SpartanJ).
Fixed Issue #15. Thanks Petr Vanek!
Sorry, something went wrong.
No branches or pull requests
Original report by Petr Vanek (Bitbucket: pvanek, GitHub: pvanek).
current master branch. I got a lookup error when I tried to get directories list:
current quick fix resolved it for me:
The text was updated successfully, but these errors were encountered: