From 12e684bea1ebf45811f3332002b793709ac3c2bb Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Wed, 22 Jul 2015 11:21:31 -0700 Subject: [PATCH] fix identation for NLPacket move ctor --- libraries/networking/src/NLPacket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/networking/src/NLPacket.cpp b/libraries/networking/src/NLPacket.cpp index ad90659ffe..fb2561486a 100644 --- a/libraries/networking/src/NLPacket.cpp +++ b/libraries/networking/src/NLPacket.cpp @@ -121,7 +121,7 @@ NLPacket::NLPacket(std::unique_ptr data, qint64 size, const HifiSockAddr& } NLPacket::NLPacket(NLPacket&& other) : - Packet(other) + Packet(other) { _sourceID = std::move(other._sourceID); }