diff options
Diffstat (limited to 'src/maildir-select.cc')
-rw-r--r-- | src/maildir-select.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/maildir-select.cc b/src/maildir-select.cc index a779a4a..470dbbc 100644 --- a/src/maildir-select.cc +++ b/src/maildir-select.cc @@ -1,18 +1,17 @@ -/** -------------------------------------------------------------------- +/** * @file maildir-select.cc * @brief Implementation of the Maildir class. * @author Andreas Aardal Hanssen * @date Andreas Aardal Hanssen - * ----------------------------------------------------------------- **/ + */ + #include "maildir.h" #include <fcntl.h> #include <unistd.h> -using namespace ::std; using namespace Binc; -//------------------------------------------------------------------------ bool Binc::Maildir::selectMailbox(const std::string &name, const std::string &s_in) { setName(name); @@ -34,6 +33,7 @@ bool Binc::Maildir::selectMailbox(const std::string &name, const std::string &s_ break; case TemporaryError: if (scan() == Success) break; + [[fallthrough]]; case PermanentError: return false; } |