diff options
Diffstat (limited to 'ipc/brokerable_attachment.cc')
-rw-r--r-- | ipc/brokerable_attachment.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ipc/brokerable_attachment.cc b/ipc/brokerable_attachment.cc index 9af40d9..f1cc9b2 100644 --- a/ipc/brokerable_attachment.cc +++ b/ipc/brokerable_attachment.cc @@ -22,13 +22,11 @@ BrokerableAttachment::AttachmentId GetRandomId() { } // namespace BrokerableAttachment::BrokerableAttachment() - : id_(GetRandomId()), needs_brokering_(false) { -} + : id_(GetRandomId()), needs_brokering_(false) {} BrokerableAttachment::BrokerableAttachment(const AttachmentId& id, bool needs_brokering) - : id_(id), needs_brokering_(needs_brokering) { -} + : id_(id), needs_brokering_(needs_brokering) {} BrokerableAttachment::~BrokerableAttachment() { } |