Skip to content

Commit ae3b16b

Browse files
committed
Undo basicExceptionCtors (GDC FE version too low)
1 parent fb92db2 commit ae3b16b

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

source/commandr/program.d

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ import commandr.utils;
3434
import std.algorithm : all, reverse, map, filter;
3535
import std.ascii : isAlphaNum;
3636
import std.array : array;
37-
import std.exception : basicExceptionCtors;
3837
import std.range : empty, chainRanges = chain;
3938
import std.string : format;
4039

@@ -46,7 +45,9 @@ import std.string : format;
4645
*/
4746
public class InvalidProgramException : Exception {
4847
/// Creates new instance of InvalidProgramException
49-
mixin basicExceptionCtors;
48+
public this(string msg) nothrow pure @safe {
49+
super(msg);
50+
}
5051
}
5152

5253
/**

0 commit comments

Comments
 (0)