diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-05 14:06:15 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-05 14:06:15 +0100 |
commit | 9fc7bfd5ef1daf84307d553941855fb377fddc7c (patch) | |
tree | e2a801894258325518537b59d3b6430e0afd88a3 /lib | |
parent | 7d37d296f942ac993d041b4576ed52265170c4a8 (diff) | |
download | libquotient-9fc7bfd5ef1daf84307d553941855fb377fddc7c.tar.gz libquotient-9fc7bfd5ef1daf84307d553941855fb377fddc7c.zip |
Add a comment, as Sonar advises
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -283,7 +283,7 @@ inline ImplPtr<ImplType> makeImpl(ArgTs&&... args) template <typename ImplType> const inline ImplPtr<ImplType> ZeroImpl() { - return { nullptr, [](ImplType*) {} }; + return { nullptr, [](ImplType*) { /* nullptr doesn't need deletion */ } }; } /** Convert what looks like a URL or a Matrix ID to an HTML hyperlink */ |