From a0367f644ce840b045a7b1fbfe26464096398f86 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Fri, 3 Jan 2020 10:06:18 -0500 Subject: [PATCH] this little change made it succeed building 9s, 3 GB whereas the old failed after a couple minute wait eating > 18 GB --- jni.d | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/jni.d b/jni.d index 0583865..00eba8b 100644 --- a/jni.d +++ b/jni.d @@ -1132,6 +1132,10 @@ private enum ImportImplementationString = q{ } }; +import std.string; +static immutable ImportImplementationString_static = ImportImplementationString.replace("STATIC", "Static"); +static immutable ImportImplementationString_not = ImportImplementationString.replace("STATIC", ""); + private mixin template JavaImportImpl(T, alias method, size_t overloadIndex) { import std.traits; @@ -1197,8 +1201,7 @@ private mixin template JavaImportImpl(T, alias method, size_t overloadIndex) { auto jobj = T.internalJavaClassHandle_; - import std.string; - mixin(ImportImplementationString.replace("STATIC", "Static")); + mixin(ImportImplementationString_static); } else pragma(mangle, method.mangleof) @@ -1222,8 +1225,7 @@ private mixin template JavaImportImpl(T, alias method, size_t overloadIndex) { throw new Exception("Cannot find Java method " ~ T.stringof ~ "." ~ __traits(identifier, method)); } - import std.string; - mixin(ImportImplementationString.replace("STATIC", "")); + mixin(ImportImplementationString_not); } }