diff options
| author | 2022-10-22 14:59:38 +0100 | |
|---|---|---|
| committer | 2022-10-22 15:11:39 +0100 | |
| commit | 0d686818a2da0833539d6e45c2346762e8b4a7a9 (patch) | |
| tree | 0d34dff2508d1dff231a0065cb1edcf6c38c2f49 /src/usermanager.cpp | |
| parent | Assign more class members inline instead of in the constructor. (diff) | |
Revert the previous commit slightly to work around a bug in Clang.
Diffstat (limited to 'src/usermanager.cpp')
| -rw-r--r-- | src/usermanager.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/usermanager.cpp b/src/usermanager.cpp index 304459566..c49c565d6 100644 --- a/src/usermanager.cpp +++ b/src/usermanager.cpp @@ -108,6 +108,11 @@ namespace } } +UserManager::UserManager() +{ + // We need to define a constructor here to work around a Clang bug. +} + UserManager::~UserManager() { for (const auto& [_, client] : clientlist) |
