mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
Fix constness of operator[]
This commit is contained in:
committed by
Vinnie Falco
parent
695cc38b36
commit
206e65cf05
@@ -160,7 +160,7 @@ public:
|
|||||||
{ return Proxy (*this, key); }
|
{ return Proxy (*this, key); }
|
||||||
|
|
||||||
template <typename Key>
|
template <typename Key>
|
||||||
Proxy operator[] (Key key) const
|
Proxy operator[] (Key key)
|
||||||
{
|
{
|
||||||
std::stringstream ss;
|
std::stringstream ss;
|
||||||
ss << key;
|
ss << key;
|
||||||
|
|||||||
Reference in New Issue
Block a user