diff options
| author | 2023-01-11 00:45:36 +0000 | |
|---|---|---|
| committer | 2023-01-11 00:56:15 +0000 | |
| commit | abc5d52f1369dd9cb9aeb12d04a233f427c37186 (patch) | |
| tree | b238133e06bac79c1b9ed66964bcd67f7ee1e725 /src/modules/m_pbkdf2.cpp | |
| parent | Make some functions that don't use `this` static. (diff) | |
Const correct various functions.
Diffstat (limited to 'src/modules/m_pbkdf2.cpp')
| -rw-r--r-- | src/modules/m_pbkdf2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_pbkdf2.cpp b/src/modules/m_pbkdf2.cpp index c0063671b..fbeb52e3b 100644 --- a/src/modules/m_pbkdf2.cpp +++ b/src/modules/m_pbkdf2.cpp @@ -62,7 +62,7 @@ public: this->length = this->hash.length(); } - std::string ToString() + std::string ToString() const { if (!IsValid()) return ""; |
