summaryrefslogtreecommitdiff
path: root/TAO/tao/LRU_Connection_Purging_Strategy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/LRU_Connection_Purging_Strategy.cpp')
-rw-r--r--TAO/tao/LRU_Connection_Purging_Strategy.cpp13
1 files changed, 5 insertions, 8 deletions
diff --git a/TAO/tao/LRU_Connection_Purging_Strategy.cpp b/TAO/tao/LRU_Connection_Purging_Strategy.cpp
index 2b2b1f9472a..4f814cbd1fa 100644
--- a/TAO/tao/LRU_Connection_Purging_Strategy.cpp
+++ b/TAO/tao/LRU_Connection_Purging_Strategy.cpp
@@ -1,14 +1,12 @@
// $Id$
-#include "tao/LRU_Connection_Purging_Strategy.h"
-#include "tao/Transport.h"
+#include "LRU_Connection_Purging_Strategy.h"
+#include "Transport.h"
-ACE_RCSID (tao,
- LRU_Connection_Purging_Strategy,
+ACE_RCSID (tao,
+ LRU_Connection_Purging_Strategy,
"$Id$")
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
TAO_LRU_Connection_Purging_Strategy::TAO_LRU_Connection_Purging_Strategy (
int cache_maximum)
: TAO_Connection_Purging_Strategy (cache_maximum),
@@ -25,7 +23,6 @@ TAO_LRU_Connection_Purging_Strategy::~TAO_LRU_Connection_Purging_Strategy (void)
void
TAO_LRU_Connection_Purging_Strategy::update_item (TAO_Transport* transport)
{
- transport->purging_order (++this->order_);
+ transport->purging_order (this->order_++);
}
-TAO_END_VERSIONED_NAMESPACE_DECL