mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-07-08 08:40:55 +00:00
Remove rdcarray sized constructor
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user