Skip to content

Commit b556bf7

Browse files
committed
oops forgot an else
1 parent 8db4bb1 commit b556bf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phobos/std/file.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5387,7 +5387,7 @@ string tempDir() @trusted
53875387
DWORD len = GetTempPathW(buf.length, buf.ptr);
53885388
if (len) cache = buf[0 .. len].to!string;
53895389
}
5390-
version (Emscripten)
5390+
else version (Emscripten)
53915391
assert(0, "function std.file.tempDir not implemented on Emscripten");
53925392
else version (Posix)
53935393
{

0 commit comments

Comments
 (0)