Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tao / Strategies / LFU_Connection_Purging_Strategy.cpp
bloba05463d5781d0e831466aa9ee07ccc67a26259a7
1 #include "tao/Strategies/LFU_Connection_Purging_Strategy.h"
2 #include "tao/Transport.h"
4 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
6 TAO_LFU_Connection_Purging_Strategy::TAO_LFU_Connection_Purging_Strategy (
7 int cache_maximum)
8 : TAO_Connection_Purging_Strategy (cache_maximum)
12 void
13 TAO_LFU_Connection_Purging_Strategy::update_item (TAO_Transport& transport)
15 transport.purging_order (transport.purging_order () + 1);
18 TAO_END_VERSIONED_NAMESPACE_DECL