summaryrefslogtreecommitdiff
path: root/apps/JAWS2/JAWS/Assoc_Array.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'apps/JAWS2/JAWS/Assoc_Array.cpp')
-rw-r--r--apps/JAWS2/JAWS/Assoc_Array.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/JAWS2/JAWS/Assoc_Array.cpp b/apps/JAWS2/JAWS/Assoc_Array.cpp
index 16781be98f4..841aa042928 100644
--- a/apps/JAWS2/JAWS/Assoc_Array.cpp
+++ b/apps/JAWS2/JAWS/Assoc_Array.cpp
@@ -21,14 +21,14 @@ JAWS_Assoc_Array<KEY,DATA>::JAWS_Assoc_Array (int maxsize)
{
typedef void * ptr_type;
- this->k_array_ = ACE_reinterpret_cast(KEY **, new ptr_type[this->maxsize_]);
+ this->k_array_ = reinterpret_cast<KEY **> (new ptr_type[this->maxsize_]);
if (this->k_array_ == 0)
{
this->maxsize_ = 0;
return;
}
- this->d_array_ = ACE_reinterpret_cast(DATA **, new ptr_type[this->maxsize_]);
+ this->d_array_ = reinterpret_cast<DATA **> (new ptr_type[this->maxsize_]);
if (this->d_array_ == 0)
{
delete[] this->k_array_;
@@ -48,8 +48,8 @@ JAWS_Assoc_Array<KEY,DATA>::~JAWS_Assoc_Array (void)
{
this->clear ();
- delete[] ACE_reinterpret_cast(void **, this->k_array_);
- delete[] ACE_reinterpret_cast(void **, this->d_array_);
+ delete[] reinterpret_cast<void **> (this->k_array_);
+ delete[] reinterpret_cast<void **> (this->d_array_);
this->k_array_ = 0;
this->d_array_ = 0;