Cleanup: avoid warning about returning a value in void context.

This commit is contained in:
Oliver Tappe 2012-08-16 21:18:58 +02:00
parent e19d7089a7
commit 6e8999717f

View File

@ -236,7 +236,7 @@ public:
void Clear()
{
MapLocker locker(this);
return fMap.Clear();
fMap.Clear();
}
Value Get(const Key& key) const