Fix variable naming and usage
Don't use `this->` when it's not needed. Use snake_case for member variables. Initialize the members using a initialization list.
This commit is contained in:
@ -79,7 +79,7 @@ private:
|
||||
Buffer m_buffer; /**< The buffer containing the command */
|
||||
uint8_t m_command; /**< The command being executed */
|
||||
uint64_t m_pos; /**< Unique position identifier */
|
||||
bool m_replySent; /**< Whether the session command reply has been sent */
|
||||
bool m_reply_sent; /**< Whether the session command reply has been sent */
|
||||
|
||||
SessionCommand();
|
||||
SessionCommand& operator = (const SessionCommand& command);
|
||||
|
Reference in New Issue
Block a user