[base] cpp minor fix, move const to another place.

This commit is contained in:
Mikhail Gorbushin 2018-11-12 17:08:12 +03:00 committed by Tatiana Yan
parent f9c6b4bd2d
commit a67a70a121

View file

@ -25,7 +25,7 @@ public:
/// \brief Loads value, if it's necessary, by |key| with |m_loader|, puts it to cache and
/// returns the reference to the value to |m_map|.
Value const & GetValue(const Key & key)
Value const & GetValue(Key const & key)
{
auto const it = m_map.find(key);
if (it != m_map.cend())