noexcept range ctor

master
Daniel Kolesa 2018-04-15 18:57:23 +02:00
parent 16518fcc83
commit 3d8dbcbab2
1 changed files with 1 additions and 1 deletions

View File

@ -568,7 +568,7 @@ namespace detail {
using size_type = std::size_t;
path_range() = delete;
path_range(path const &p): p_rest(p.string()) {
path_range(path const &p) noexcept: p_rest(p.string()) {
string_range drive = p.drive();
if (!drive.empty()) {
p_current = p.anchor();