aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-01-05 14:06:15 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-01-05 14:06:15 +0100
commit9fc7bfd5ef1daf84307d553941855fb377fddc7c (patch)
treee2a801894258325518537b59d3b6430e0afd88a3 /lib
parent7d37d296f942ac993d041b4576ed52265170c4a8 (diff)
downloadlibquotient-9fc7bfd5ef1daf84307d553941855fb377fddc7c.tar.gz
libquotient-9fc7bfd5ef1daf84307d553941855fb377fddc7c.zip
Add a comment, as Sonar advises
Diffstat (limited to 'lib')
-rw-r--r--lib/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.h b/lib/util.h
index f5650ee2..66db0ece 100644
--- a/lib/util.h
+++ b/lib/util.h
@@ -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 */