Problem: stream_engine_t::_endpoint is unnecessarily non-const

Solution: declare _endpoint const
This commit is contained in:
Simon Giesecke 2019-01-31 07:20:50 -05:00
parent 091df743a8
commit 4d362887bb

View File

@ -191,7 +191,7 @@ class stream_engine_t : public io_object_t, public i_engine
const options_t _options;
// String representation of endpoint
std::string _endpoint;
const std::string _endpoint;
bool _plugged;