From ae40fce7c91092cb1882f310247f7dc01e761825 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Thu, 31 Oct 2002 18:14:29 +0000 Subject: [PATCH] added namespace qualifiers to make MIPS PRO happy [SVN r16033] --- include/boost/tuple/tuple_io.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/boost/tuple/tuple_io.hpp b/include/boost/tuple/tuple_io.hpp index 5ca9e8e..4bfbaa0 100644 --- a/include/boost/tuple/tuple_io.hpp +++ b/include/boost/tuple/tuple_io.hpp @@ -86,9 +86,9 @@ public: // parentheses and space are the default manipulators if (!c) { switch(m) { - case open : c = '('; break; - case close : c = ')'; break; - case delimiter : c = ' '; break; + case detail::format_info::open : c = '('; break; + case detail::format_info::close : c = ')'; break; + case detail::format_info::delimiter : c = ' '; break; } } return c; @@ -109,9 +109,9 @@ public: // parentheses and space are the default manipulators if (!c) { switch(m) { - case open : c = i.widen('('); break; - case close : c = i.widen(')'); break; - case delimiter : c = i.widen(' '); break; + case detail::format_info::open : c = i.widen('('); break; + case detail::format_info::close : c = i.widen(')'); break; + case detail::format_info::delimiter : c = i.widen(' '); break; } } return c;