mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 10:35:50 +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); }
|
||||
|
||||
template <typename Key>
|
||||
Proxy operator[] (Key key) const
|
||||
Proxy operator[] (Key key)
|
||||
{
|
||||
std::stringstream ss;
|
||||
ss << key;
|
||||
|
||||
Reference in New Issue
Block a user