Merge branch 'fixes' into 'master'

Minor fixes

See merge request Mergul/bubel-ecs!18
This commit is contained in:
Dawid Masiukiewicz 2021-05-09 16:46:11 +00:00
commit 54b210346d
2 changed files with 3 additions and 3 deletions

View file

@ -49,8 +49,8 @@ if betterC_opt
endif
endif
add_global_arguments(args, language : 'd')
add_global_link_arguments(link_args, language : 'd')
add_project_arguments(args, language : 'd')
add_project_link_arguments(link_args, language : 'd')
# Dependencies
threads_dep = dependency('threads')

View file

@ -66,7 +66,7 @@ static string attachParentName(alias T, string str)()
{
return attachParentName!(parent, parent_str[7 .. $] ~ '.' ~ str);
}
else return parent_str[8 .. $] ~ '.' ~ str;
else return parent_str[7 .. $] ~ '.' ~ str;
}
else static if(parent_str[0..8] == "package ")
{