2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-03 09:12:14 +00:00

(merge from head)

removed unnamed namespace reported by inspect tool


[SVN r34716]
This commit is contained in:
Gennaro Prota
2006-07-24 21:58:09 +00:00
parent 1035ddac56
commit 5898cc5bae

View File

@@ -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 {