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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/dir_lock.h b/library/dir_lock.h
index f4720e61..8cec9d69 100644
--- a/library/dir_lock.h
+++ b/library/dir_lock.h
@@ -24,7 +24,7 @@ RAII structure to place a directory lock against other FFS processes:
class DirLock
{
public:
- DirLock(const Zstring& lockfilename, DirLockCallback* callback = NULL); //throw (FileError), callback only used during construction
+ DirLock(const Zstring& lockfilename, DirLockCallback* callback = NULL); //throw FileError, callback only used during construction
private:
class LockAdmin;
bgstack15