From 6c8c02792af66ce0dd17bba5b23d2b9438c9060c Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 16 Jul 2002 10:20:26 +0000 Subject: [PATCH] Fixed the new TemplateArray desctructor. --- include/osg/Array | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/Array b/include/osg/Array index eda284698..8ae69ff48 100644 --- a/include/osg/Array +++ b/include/osg/Array @@ -105,7 +105,7 @@ class TemplateArray : public Array, public std::vector protected: - virtual ~Array() {} + virtual ~TemplateArray() {} }; typedef TemplateArray ByteArray;