From fae7d3e93d00d9636632aa0acf9ebc19ed9f4a34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Mon, 9 Jul 2018 11:58:25 +0200 Subject: [PATCH] Revert non-compiling change. --- source/vibe/core/path.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/vibe/core/path.d b/source/vibe/core/path.d index dae32fa..b98b89b 100644 --- a/source/vibe/core/path.d +++ b/source/vibe/core/path.d @@ -1,7 +1,7 @@ /** Contains routines for high level path handling. - Copyright: © 2012-2017 RejectedSoftware e.K. + Copyright: © 2012-2018 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ @@ -384,7 +384,7 @@ struct GenericPath(F) { single-element range. */ this(Segment segment) - nothrow { + { import std.range : only; this(only(segment)); }