mirror of https://github.com/buggins/dlangui.git
Workaround bugzilla 24052 (dmd inliner slowdown)
This commit is contained in:
parent
d065ca4fe1
commit
c655e0cf13
|
@ -206,6 +206,11 @@ EmbeddedResource[] embedResource(string resourceName)() {
|
||||||
|
|
||||||
/// embed all resources from list
|
/// embed all resources from list
|
||||||
EmbeddedResource[] embedResources(string[] resourceNames)() {
|
EmbeddedResource[] embedResources(string[] resourceNames)() {
|
||||||
|
version(DigitalMars)
|
||||||
|
{
|
||||||
|
pragma(inline, false); // needed because https://issues.dlang.org/show_bug.cgi?id=24052
|
||||||
|
}
|
||||||
|
|
||||||
static if (resourceNames.length == 0)
|
static if (resourceNames.length == 0)
|
||||||
return [];
|
return [];
|
||||||
static if (resourceNames.length == 1)
|
static if (resourceNames.length == 1)
|
||||||
|
|
Loading…
Reference in New Issue