diff options
Diffstat (limited to 'boost/container/detail/min_max.hpp')
-rw-r--r-- | boost/container/detail/min_max.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/container/detail/min_max.hpp b/boost/container/detail/min_max.hpp index 7486db7d05..35cf06617d 100644 --- a/boost/container/detail/min_max.hpp +++ b/boost/container/detail/min_max.hpp @@ -20,7 +20,7 @@ namespace boost { namespace container { -namespace container_detail { +namespace dtl { template<class T> const T &max_value(const T &a, const T &b) @@ -30,7 +30,7 @@ template<class T> const T &min_value(const T &a, const T &b) { return a < b ? a : b; } -} //namespace container_detail { +} //namespace dtl { } //namespace container { } //namespace boost { |