Skip to content
New issue

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

missing efsw::FileWatcher::directories() symbol #55

Closed
SpartanJ opened this issue Dec 16, 2013 · 1 comment
Closed

missing efsw::FileWatcher::directories() symbol #55

SpartanJ opened this issue Dec 16, 2013 · 1 comment
Labels
bug Something isn't working major

Comments

@SpartanJ
Copy link
Owner

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;
@SpartanJ
Copy link
Owner Author

Original comment by Martín Lucas Golini (Bitbucket: SpartanJ, GitHub: SpartanJ).


Fixed Issue #15. Thanks Petr Vanek!

@SpartanJ SpartanJ added major bug Something isn't working labels Jan 14, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working major
Projects
None yet
Development

No branches or pull requests

1 participant