This commit is contained in:
Vadim Lopatin 2017-08-14 10:09:05 +03:00
parent e58f2a1abe
commit 598d53abae
3 changed files with 0 additions and 16 deletions

View File

@ -1887,10 +1887,6 @@ mixin template APP_ENTRY_POINT() {
static if (BACKEND_CONSOLE) {
int main(string[] args)
{
if (args.length > 1)
args = args[1 .. $];
else
args = null;
return DLANGUImain(args);
}
} else {
@ -1916,10 +1912,6 @@ mixin template APP_ENTRY_POINT() {
} else {
int main(string[] args)
{
if (args.length > 1)
args = args[1 .. $];
else
args = null;
return DLANGUImain(args);
}
}

View File

@ -1625,10 +1625,6 @@ int sdlmain(string[] args) {
version (unittest) {
} else {
if (args.length > 1)
args = args[1 .. $];
else
args = null;
res = UIAppMain(args);
}

View File

@ -1853,10 +1853,6 @@ extern(C) int DLANGUImain(string[] args)
version (unittest) {
} else {
if (args.length > 1)
args = args[1 .. $];
else
args = null;
res = UIAppMain(args);
}