On Sat, Jul 22, 2006 at 10:11:13PM +0200, Georg Baum wrote:

> +     if (!npath.is_complete())
> +             return "./" + npath.string() + '/';

Please, use

        if (!os::is_absolute_path(npath.string()))

here, as on cygwin both c:/xxx and /xxx are absolute paths and this is
not caught by boost.

-- 
Enrico

Reply via email to