mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-27 15:25:54 -04:00
pipeline: Fix compile warning with pipelining disabled
This commit is contained in:
parent
6860c7776b
commit
126cd374e9
@ -198,8 +198,8 @@ PipelineCycler(Pipeline *pipeline) :
|
||||
template<class CycleDataType>
|
||||
INLINE PipelineCycler<CycleDataType>::
|
||||
PipelineCycler(CycleDataType &&initial_data, Pipeline *pipeline) :
|
||||
_typed_data(std::move(initial_data)),
|
||||
PipelineCyclerBase(&_typed_data, pipeline)
|
||||
PipelineCyclerBase(&_typed_data, pipeline),
|
||||
_typed_data(std::move(initial_data))
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user