move underscores to the end of private members

This commit is contained in:
gabime
2018-06-10 22:59:17 +03:00
parent 7d975de193
commit a21594bec7
24 changed files with 281 additions and 288 deletions

View File

@@ -170,7 +170,7 @@ private:
{
case async_msg_type::flush:
{
incoming_async_msg.worker_ptr->_backend_flush();
incoming_async_msg.worker_ptr->backend_flush_();
return true;
}
@@ -183,7 +183,7 @@ private:
{
log_msg msg;
incoming_async_msg.to_log_msg(std::move(msg));
incoming_async_msg.worker_ptr->_backend_log(msg);
incoming_async_msg.worker_ptr->backend_log_(msg);
return true;
}
}