From 206e65cf0569eb1185bc220a6bcf72193573bc7e Mon Sep 17 00:00:00 2001 From: Patrick Dehne Date: Sun, 20 Oct 2013 00:35:43 +0200 Subject: [PATCH] Fix constness of operator[] --- beast/utility/PropertyStream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beast/utility/PropertyStream.h b/beast/utility/PropertyStream.h index 653ceb8827..a3effc7071 100644 --- a/beast/utility/PropertyStream.h +++ b/beast/utility/PropertyStream.h @@ -160,7 +160,7 @@ public: { return Proxy (*this, key); } template - Proxy operator[] (Key key) const + Proxy operator[] (Key key) { std::stringstream ss; ss << key;