diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-06-06 21:43:28 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-06-06 21:43:28 +0000 |
commit | 57c582b282e047919f2b61247c543f5b73ffd10a (patch) | |
tree | f4bc74aa8c6b42152fa84cbd233ca8fd53a71a5b /ace/Timeprobe.cpp | |
parent | 7346d5d2bdaebe0c412da009e70d22436cf891c1 (diff) | |
download | ATCD-57c582b282e047919f2b61247c543f5b73ffd10a.tar.gz |
(dtor): inserted missing "[]" in delete of array
Diffstat (limited to 'ace/Timeprobe.cpp')
-rw-r--r-- | ace/Timeprobe.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Timeprobe.cpp b/ace/Timeprobe.cpp index 8ce9286ac0c..578cfeb56e7 100644 --- a/ace/Timeprobe.cpp +++ b/ace/Timeprobe.cpp @@ -37,7 +37,7 @@ ACE_Timeprobe<ACE_LOCK>::ACE_Timeprobe (u_long size) template <class ACE_LOCK> ACE_Timeprobe<ACE_LOCK>::~ACE_Timeprobe (void) { - delete this->timeprobes_; + delete [] this->timeprobes_; } template <class ACE_LOCK> void |