C++: unflip cause strings in FunctionWithWrapper

This commit is contained in:
Robert Marsh
2020-02-10 15:57:38 -08:00
parent d09f78db29
commit d672f8f863

View File

@@ -106,8 +106,8 @@ abstract class FunctionWithWrappers extends Function {
pragma[nomagic] pragma[nomagic]
private string wrapperFunctionAnyDepthUnique(Function func, int paramIndex) { private string wrapperFunctionAnyDepthUnique(Function func, int paramIndex) {
result = result =
min(string targetCause | this.wrapperFunctionAnyDepth(func, paramIndex, targetCause)) + toCause(func, paramIndex) + ", which ends up calling " +
", which ends up calling " + toCause(func, paramIndex) min(string targetCause | this.wrapperFunctionAnyDepth(func, paramIndex, targetCause))
} }
/** /**