From 7e6f05b864876446e4cc5b87f0109cbdd19933e8 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 27 Apr 2011 16:04:37 +0000 Subject: [PATCH] Fixed Coverity reported issue, in this case it's a unused member variable so could just be deleted. CID 11687: Uninitialized pointer field (UNINIT_CTOR) Non-static class member _glBeginEndAdapter is not initialized in this constructor nor in any functions that it calls. --- src/osg/ArrayDispatchers.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/osg/ArrayDispatchers.cpp b/src/osg/ArrayDispatchers.cpp index 61add382b..18a2de75d 100644 --- a/src/osg/ArrayDispatchers.cpp +++ b/src/osg/ArrayDispatchers.cpp @@ -163,7 +163,6 @@ class TemplateTargetAttributeDispatch : public AttributeDispatch _functionPtr(_target, &(_array[pos * _stride])); } - GLBeginEndAdapter* _glBeginEndAdapter; F _functionPtr; I _target; unsigned int _stride;