summaryrefslogtreecommitdiff
path: root/ace/Min_Max.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Min_Max.h')
-rw-r--r--ace/Min_Max.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/ace/Min_Max.h b/ace/Min_Max.h
index 7bff181088e..e961b510ee8 100644
--- a/ace/Min_Max.h
+++ b/ace/Min_Max.h
@@ -24,9 +24,6 @@
# endif /* ACE_LACKS_PRAGMA_ONCE */
# if !defined (ACE_LACKS_MIN_MAX_TEMPLATES)
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
template <class T>
inline const T &
ace_min (const T &t1, const T &t2)
@@ -61,9 +58,6 @@ ace_range (const T &min, const T &max, const T &val)
{
return ace_min (ace_max (min, val), max);
}
-
-ACE_END_VERSIONED_NAMESPACE_DECL
-
# else
// These macros should only be used if a C++ compiler can't grok the
// inline templates