summaryrefslogtreecommitdiff
path: root/library/dir_lock.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/dir_lock.h')
-rw-r--r--library/dir_lock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/dir_lock.h b/library/dir_lock.h
index 91b61990..5d51d698 100644
--- a/library/dir_lock.h
+++ b/library/dir_lock.h
@@ -3,7 +3,7 @@
#include "../shared/zstring.h"
#include "../shared/file_error.h"
-#include <boost/shared_ptr.hpp>
+#include <memory>
struct DirLockCallback //while waiting for the lock
@@ -30,7 +30,7 @@ public:
private:
class LockAdmin;
class SharedDirLock;
- boost::shared_ptr<SharedDirLock> sharedLock;
+ std::shared_ptr<SharedDirLock> sharedLock;
};
#endif // DIR_LOCK_H_INCLUDED
bgstack15