summaryrefslogtreecommitdiff
path: root/ace/Swap.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Swap.inl')
-rw-r--r--ace/Swap.inl6
1 files changed, 0 insertions, 6 deletions
diff --git a/ace/Swap.inl b/ace/Swap.inl
index 195f1559f69..b1139ca3ffb 100644
--- a/ace/Swap.inl
+++ b/ace/Swap.inl
@@ -1,5 +1,3 @@
-// -*- C++ -*-
-
/**
* @file Swap.inl
*
@@ -8,8 +6,6 @@
* @author Carlos O'Ryan <coryan@uci.edu>
*/
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
template<class T> ACE_INLINE void
ACE_Swap<T>::swap (T &lhs, T& rhs)
{
@@ -17,5 +13,3 @@ ACE_Swap<T>::swap (T &lhs, T& rhs)
lhs = rhs;
rhs = tmp;
}
-
-ACE_END_VERSIONED_NAMESPACE_DECL