Fix formatting issue

This commit is contained in:
Léo Lam 2021-01-31 16:26:13 +01:00
parent 8ac6752866
commit 27f8a7bdda
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741
1 changed files with 2 additions and 3 deletions

View File

@ -2,9 +2,8 @@
namespace ksys {
MessageAck::MessageAck(bool dest_valid, bool success,
const MesTransceiverId& destination, const MessageType& type,
void* user_data)
MessageAck::MessageAck(bool dest_valid, bool success, const MesTransceiverId& destination,
const MessageType& type, void* user_data)
: mDestValid(dest_valid), mSuccess(success), mDestination(destination), mType(type),
mUserData(user_data) {}