summaryrefslogtreecommitdiff
path: root/ace/Swap.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Swap.inl')
-rw-r--r--ace/Swap.inl15
1 files changed, 0 insertions, 15 deletions
diff --git a/ace/Swap.inl b/ace/Swap.inl
deleted file mode 100644
index b1139ca3ffb..00000000000
--- a/ace/Swap.inl
+++ /dev/null
@@ -1,15 +0,0 @@
-/**
- * @file Swap.inl
- *
- * $Id$
- *
- * @author Carlos O'Ryan <coryan@uci.edu>
- */
-
-template<class T> ACE_INLINE void
-ACE_Swap<T>::swap (T &lhs, T& rhs)
-{
- T tmp = lhs;
- lhs = rhs;
- rhs = tmp;
-}