From 35a12cdf60bbd8ece59cad02b2145e724e3ad371 Mon Sep 17 00:00:00 2001 From: "perkj@webrtc.org" Date: Fri, 28 Oct 2011 15:09:03 +0000 Subject: [PATCH] Fix comment. git-svn-id: http://webrtc.googlecode.com/svn/trunk@836 4adac7df-926f-26a2-2b94-8c16560cd09d --- third_party_mods/libjingle/source/talk/base/refcount.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/third_party_mods/libjingle/source/talk/base/refcount.h b/third_party_mods/libjingle/source/talk/base/refcount.h index b811809fed..be4ac8a949 100644 --- a/third_party_mods/libjingle/source/talk/base/refcount.h +++ b/third_party_mods/libjingle/source/talk/base/refcount.h @@ -60,7 +60,8 @@ class RefCountedObject : public T { } template - RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4) : ref_count_(0), T(p1, p2, p3, p4) { + RefCountedObject(P1 p1, P2 p2, P3 p3, P4 p4) + : ref_count_(0), T(p1, p2, p3, p4) { } template