From 5898cc5bae19f4d3617ca3ed7103604759ceeec7 Mon Sep 17 00:00:00 2001 From: Gennaro Prota Date: Mon, 24 Jul 2006 21:58:09 +0000 Subject: [PATCH] (merge from head) removed unnamed namespace reported by inspect tool [SVN r34716] --- include/boost/pending/stringtok.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/pending/stringtok.hpp b/include/boost/pending/stringtok.hpp index ae52e8db..a7065644 100644 --- a/include/boost/pending/stringtok.hpp +++ b/include/boost/pending/stringtok.hpp @@ -63,14 +63,14 @@ * This is the only part of the implementation that I don't like. * It can probably be improved upon by the reader... */ -namespace { + inline bool isws (char c, char const * const wstr) { using namespace std; return (strchr(wstr,c) != NULL); } -} + namespace boost {