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, 6 insertions, 0 deletions
diff --git a/ace/Swap.inl b/ace/Swap.inl
index b1139ca3ffb..195f1559f69 100644
--- a/ace/Swap.inl
+++ b/ace/Swap.inl
@@ -1,3 +1,5 @@
+// -*- C++ -*-
+
/**
* @file Swap.inl
*
@@ -6,6 +8,8 @@
* @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)
{
@@ -13,3 +17,5 @@ ACE_Swap<T>::swap (T &lhs, T& rhs)
lhs = rhs;
rhs = tmp;
}
+
+ACE_END_VERSIONED_NAMESPACE_DECL