You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building using xcodebuild fails for me because the variable added in TransformAddOldNew() is unused (it really is), and -Werror,... is set. The following makes mps build successfully:
modified code/trans.c
@@ -151,7 +151,6 @@ Res TransformAddOldNew(Transform transform,
{
Res res;
Index i;
- Count added = 0;
Arena arena;
AVERT(Transform, transform);
@@ -190,8 +189,6 @@ Res TransformAddOldNew(Transform transform,
AVER(res != ResFAIL); /* It's a static error to add the same old twice. */
if (res != ResOK)
return res;
-
- ++added;
}
AVERT(Transform, transform);
The text was updated successfully, but these errors were encountered:
Building using
xcodebuild
fails for me because the variableadded
inTransformAddOldNew()
is unused (it really is), and-Werror,...
is set. The following makes mps build successfully:The text was updated successfully, but these errors were encountered: