Fix constness of operator[]

This commit is contained in:
Patrick Dehne
2013-10-20 00:35:43 +02:00
committed by Vinnie Falco
parent 695cc38b36
commit 206e65cf05

View File

@@ -160,7 +160,7 @@ public:
{ return Proxy (*this, key); }
template <typename Key>
Proxy operator[] (Key key) const
Proxy operator[] (Key key)
{
std::stringstream ss;
ss << key;