Merge pull request #100 from MartinNowak/fix_const_json
fix relying on implicit const conversion of JSONValue
This commit is contained in:
commit
928240ccb4
|
@ -298,7 +298,7 @@ private void init()
|
||||||
readOption("h|help", &g_help, "Prints this help screen.");
|
readOption("h|help", &g_help, "Prints this help screen.");
|
||||||
}
|
}
|
||||||
|
|
||||||
private T fromValue(T)(JSONValue val)
|
private T fromValue(T)(in JSONValue val)
|
||||||
{
|
{
|
||||||
import std.conv : to;
|
import std.conv : to;
|
||||||
static if (is(T == bool)) return val.type == JSON_TYPE.TRUE;
|
static if (is(T == bool)) return val.type == JSON_TYPE.TRUE;
|
||||||
|
|
Loading…
Reference in a new issue