From c3b7ae1eb54b0a806d818ed58c2c44bfd9fa0f68 Mon Sep 17 00:00:00 2001 From: David Rose Date: Mon, 11 Mar 2002 18:14:11 +0000 Subject: [PATCH] oops, const conversion --- panda/src/putil/pipelineCycler.I | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/putil/pipelineCycler.I b/panda/src/putil/pipelineCycler.I index d98b7bafa0..96a36d95a4 100644 --- a/panda/src/putil/pipelineCycler.I +++ b/panda/src/putil/pipelineCycler.I @@ -215,7 +215,7 @@ write_stage(int) { template INLINE CycleDataType *PipelineCycler:: cheat() const { - return &_data; + return (CycleDataType *)&_data; }