From 5e5d8f7e17db6b05a7dcffde95abd38d9d9a302e Mon Sep 17 00:00:00 2001 From: David Rose Date: Tue, 13 Dec 2011 22:39:00 +0000 Subject: [PATCH] whoops, missing trivial constructor --- panda/src/pipeline/cycleDataWriter.I | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/panda/src/pipeline/cycleDataWriter.I b/panda/src/pipeline/cycleDataWriter.I index e9bb1a51d6..73236fdf2d 100644 --- a/panda/src/pipeline/cycleDataWriter.I +++ b/panda/src/pipeline/cycleDataWriter.I @@ -239,6 +239,18 @@ CycleDataWriter(PipelineCycler &cycler, bool, Thread *) { _pointer = cycler.cheat(); } +//////////////////////////////////////////////////////////////////// +// Function: CycleDataWriter::Constructor (trivial) +// Access: Public +// Description: +//////////////////////////////////////////////////////////////////// +template +INLINE CycleDataWriter:: +CycleDataWriter(PipelineCycler &, CycleDataType *locked_cdata, + Thread *) { + _pointer = locked_cdata; +} + //////////////////////////////////////////////////////////////////// // Function: CycleDataWriter::Copy Constructor (trivial) // Access: Public