remove unreachable return (Peter Dimov)

[SVN r16639]
This commit is contained in:
Beman Dawes
2002-12-17 15:43:36 +00:00
parent bf9098d9f7
commit dc0e363c94

View File

@@ -475,16 +475,6 @@ namespace boost
# else
return m_path.size() && m_path[0] == '/';
# endif
return ( m_path.size()
&& m_path[0] == '/' ) // covers both "/" and "//share"
# ifdef BOOST_WINDOWS
|| ( m_path.size() > 1 && m_path[1] == ':' ) // "c:" and "c:/"
|| ( m_path.size() > 3
&& m_path[m_path.size()-1] == ':' ) // "device:"
# endif
;
}
bool path::has_root_path() const