We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df3f780 commit fd5efb4Copy full SHA for fd5efb4
1 file changed
src/dparse/parser.d
@@ -9174,3 +9174,12 @@ protected: final:
9174
bool[typeof(Token.index)] cachedAAChecks;
9175
bool[typeof(Token.index)] cachedTypeChecks;
9176
}
9177
+
9178
+private void profileGCLinkerErrorWorkaround()
9179
+{
9180
+ // This works around `dub build --build=profile-gc --config=server` failing
9181
+ // with a linker error in DCD with dmd 2.102.2.
9182
+ // Root cause should eventually be looked up.
9183
+ uint[] workaround;
9184
+ workaround ~= 1;
9185
+}
0 commit comments