Fix constness of Proxy

This commit is contained in:
Patrick Dehne
2013-10-20 00:36:13 +02:00
committed by Vinnie Falco
parent ac0142a49e
commit e5bb90fdfa
2 changed files with 4 additions and 4 deletions

View File

@@ -56,7 +56,7 @@ PropertyStream::Source& PropertyStream::Item::operator* () const
//------------------------------------------------------------------------------
PropertyStream::Proxy::Proxy (
Map& map, std::string const& key)
Map const& map, std::string const& key)
: m_map (&map)
, m_key (key)
{