diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-07-02 17:27:40 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2016-07-02 18:20:10 +0300 |
commit | 8f5677089f439b3ae97c430eb61040287459f63d (patch) | |
tree | 58f1bb7d2278c45213f34a2b4e0587dd77b2cca7 | |
parent | bac02200267495741e85db90607186ce4e0593b3 (diff) |
Fix operator|(permissions, permissions)
-rw-r--r-- | butl/filesystem.ixx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/butl/filesystem.ixx b/butl/filesystem.ixx index c2bfa49..037ab8b 100644 --- a/butl/filesystem.ixx +++ b/butl/filesystem.ixx @@ -49,7 +49,7 @@ namespace butl // permissions // inline permissions operator& (permissions x, permissions y) {return x &= y;} - inline permissions operator| (permissions x, permissions y) {return x &= y;} + inline permissions operator| (permissions x, permissions y) {return x |= y;} inline permissions operator&= (permissions& x, permissions y) { return x = static_cast<permissions> ( |