Xcode 7 hanging with multi-dimensional vector resize
Xcode 7 hanging with multi-dimensional vector resize
- Subject: Xcode 7 hanging with multi-dimensional vector resize
- From: Michael McLaughlin <email@hidden>
- Date: Fri, 11 Dec 2015 13:23:31 -0500
My OS X Foundation tool declares several 2-D and/or 3-D matrices, e.g.,
vector<vector<double>> v2;
which I resize on the fly.
The app works fine when called from Terminal but, within Xcode, it usually hangs at the point where the “inside” vectors are being resized. The following is for 1-based 2-D matrices:
case 2: type = mat2; Ndim = 2; length = sz1 + 1; length2 = sz2 + 1; dataLength = sz1*sz2 + 1; v2.resize(length); for (c = 0;c <= length;c++) v2[c].resize(length2); break;
I have not encountered this before. Is it a known problem?
Thanks for any help. |
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden