Remove rdcarray sized constructor

This commit is contained in:
baldurk
2022-11-09 13:22:53 +00:00
parent 2cf7b911c7
commit 2e276a7f84
17 changed files with 64 additions and 39 deletions
-6
View File
@@ -149,12 +149,6 @@ public:
typedef T value_type;
rdcarray() : elems(NULL), allocatedCount(0), usedCount(0) {}
rdcarray(size_t count)
{
elems = NULL;
allocatedCount = usedCount = 0;
resize(count);
}
~rdcarray()
{
// clear will destruct the actual elements still existing