summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2006-10-24 22:53:25 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2006-10-24 22:53:25 +0000
commitecbbba73cfab61b8a6d99f865ac61212c0d5a952 (patch)
treeaf67843227edb1905d2d45ebee1ca5fb26bb76c9
parent0573bddbf4ec3d43787bb8cd5956c1b3a5ad1344 (diff)
downloadATCD-ecbbba73cfab61b8a6d99f865ac61212c0d5a952.tar.gz
ChangeLogTag:Tue Oct 24 23:49:25 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
-rw-r--r--ACE/ChangeLog9
-rw-r--r--ACE/ace/Hash_Map_Manager_T.inl2
2 files changed, 10 insertions, 1 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 8681b69ae51..27f31ab2123 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,12 @@
+Tue Oct 24 23:49:25 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
+
+ * ace/Hash_Map_Manager_T.inl (ACE_Hash_Map_Iterator_Base_Ex):
+
+ Commented out use of ACE_TRACE macro. The regular expression in
+ the bin/fuzz.pl script used to detect ACE_TRACE mismatch
+ incorrectly identifies a mismatch the ACE_TRACE question. Once
+ the fuzz script is fixed, the ACE_TRACE can be uncommented.
+
Tue Oct 24 22:20:38 UTC 2006 Ossama Othman <ossama_othman at symantec dot com>
* ace/Truncate.h:
diff --git a/ACE/ace/Hash_Map_Manager_T.inl b/ACE/ace/Hash_Map_Manager_T.inl
index b44f4508791..dbb68c7781a 100644
--- a/ACE/ace/Hash_Map_Manager_T.inl
+++ b/ACE/ace/Hash_Map_Manager_T.inl
@@ -498,7 +498,7 @@ ACE_Hash_Map_Iterator_Base_Ex<EXT_ID,
index_ (head ? -1 : (ssize_t) mm.total_size_),
next_ (0)
{
- ACE_TRACE ("ACE_Hash_Map_Iterator_Base_Ex<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK>::ACE_Hash_Map_Iterator_Base_Ex");
+// ACE_TRACE ("ACE_Hash_Map_Iterator_Base_Ex<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK>::ACE_Hash_Map_Iterator_Base_Ex");
if (mm.table_ != 0)
this->next_ = &mm.table_[head ? 0 : mm.total_size_ - 1];