summaryrefslogtreecommitdiff
path: root/ACE/ace/Hash_Map_Manager_T.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-02-16 13:30:38 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-02-16 13:30:38 +0000
commit62e1f8509ca9d11fe0f138a23daa333da3a33f98 (patch)
tree835d008bdb38ab1e9d4457d68d3bfc5ab50fb320 /ACE/ace/Hash_Map_Manager_T.cpp
parentd2638ee86b6baff7e01ab4fd4caa39127fbff8b0 (diff)
downloadATCD-62e1f8509ca9d11fe0f138a23daa333da3a33f98.tar.gz
Mon Feb 16 13:30:28 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Array_Base.h: * ace/Local_Tokens.h: * ace/SPIPE_Stream.h: * ace/Stream.h: * ace/Unbounded_Set_Ex.h: * ace/Vector_T.h Doyxgen change * ace/Hash_Map_Manager_T.cpp: Use prefix increment * ace/Hash_Map_Manager_T.h: * ace/Hash_Map_Manager_T.inl: Removed cur_size method, current_size does the same and is public * ace/Log_Msg.cpp: Layout change * netsvcs/lib/Client_Logging_Handler.cpp: If we don't receive the exact number of bytes with spipe stream see that as error
Diffstat (limited to 'ACE/ace/Hash_Map_Manager_T.cpp')
-rw-r--r--ACE/ace/Hash_Map_Manager_T.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/Hash_Map_Manager_T.cpp b/ACE/ace/Hash_Map_Manager_T.cpp
index e89ad2d2ef1..c503e603ccd 100644
--- a/ACE/ace/Hash_Map_Manager_T.cpp
+++ b/ACE/ace/Hash_Map_Manager_T.cpp
@@ -266,7 +266,7 @@ ACE_Hash_Map_Manager_Ex<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK>::trybi
&this->table_[loc]);
this->table_[loc].next_ = entry;
entry->next_->prev_ = entry;
- this->cur_size_++;
+ ++this->cur_size_;
return 0;
}
else