Commit 13c76b929b3502d0486f241a9128fd318cb683c3

Authored by Patric Stout
1 parent 6736e5e0

chore: apply coding style to all files

Showing 1 changed file with 1 additions and 1 deletions
src/Connection.h
@@ -87,6 +87,6 @@ private: @@ -87,6 +87,6 @@ private:
87 std::mutex m_send_queue_mutex; ///< Mutex to protect the send queue. 87 std::mutex m_send_queue_mutex; ///< Mutex to protect the send queue.
88 std::condition_variable m_send_queue_cv; ///< Condition variable to wake up the write thread when the send queue is not empty. 88 std::condition_variable m_send_queue_cv; ///< Condition variable to wake up the write thread when the send queue is not empty.
89 89
90 - std::chrono::steady_clock::time_point m_last_sent_packet = {}; ///< Time of the last packet sent to the broker. 90 + std::chrono::steady_clock::time_point m_last_sent_packet = {}; ///< Time of the last packet sent to the broker.
91 std::chrono::steady_clock::time_point m_last_received_packet = {}; ///< Time of the last packet received from the broker. 91 std::chrono::steady_clock::time_point m_last_received_packet = {}; ///< Time of the last packet received from the broker.
92 }; 92 };