diff options
| author | 2021-10-04 17:07:51 +0100 | |
|---|---|---|
| committer | 2021-10-04 17:39:05 +0100 | |
| commit | dec5875aca7a2e0c281388db2f25d195ad9b2a3d (patch) | |
| tree | 0f8f741801677daa23e7f399282b64ecde137ad0 /src/modules/m_ldapauth.cpp | |
| parent | Mark all message tag provider classes as final. (diff) | |
| download | inspircd++-dec5875aca7a2e0c281388db2f25d195ad9b2a3d.tar.gz inspircd++-dec5875aca7a2e0c281388db2f25d195ad9b2a3d.tar.bz2 inspircd++-dec5875aca7a2e0c281388db2f25d195ad9b2a3d.zip | |
Apply the final keyword to all module classes where appropriate.
Diffstat (limited to 'src/modules/m_ldapauth.cpp')
| -rw-r--r-- | src/modules/m_ldapauth.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/modules/m_ldapauth.cpp b/src/modules/m_ldapauth.cpp index 28165cb20..b127cb63f 100644 --- a/src/modules/m_ldapauth.cpp +++ b/src/modules/m_ldapauth.cpp @@ -36,7 +36,8 @@ namespace std::vector<std::pair<std::string, std::string> > requiredattributes; } -class BindInterface : public LDAPInterface +class BindInterface + : public LDAPInterface { const std::string provider; const std::string uid; @@ -206,7 +207,8 @@ class BindInterface : public LDAPInterface } }; -class SearchInterface : public LDAPInterface +class SearchInterface final + : public LDAPInterface { const std::string provider; const std::string uid; @@ -259,7 +261,8 @@ class SearchInterface : public LDAPInterface } }; -class AdminBindInterface : public LDAPInterface +class AdminBindInterface final + : public LDAPInterface { const std::string provider; const std::string uuid; |
