fix virtual destructor

This commit is contained in:
alecf%netscape.com 1999-05-05 02:43:38 +00:00
parent 9215a5fb5c
commit ff8af2a4f8

View File

@ -1,4 +1,4 @@
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
@ -27,8 +27,8 @@ class nsUInt32Array
{
public:
// Construction/destruction
nsUInt32Array();
~nsUInt32Array();
nsUInt32Array();
virtual ~nsUInt32Array();
// State/attribute member functions
PRUint32 GetSize() const;