|
From: Graeme <gp...@ms...> - 2015-03-19 12:32:27
|
This crashes mingw g++ (GCC) 4.8.1, hangs linux - with bigger array.
>g++ stringArray.cc
#include <string>
struct T {
std::string s[4065];
};
int main() {
T m = {"x", "y"};
}
--
View this message in context: http://mingw-users.1079350.n2.nabble.com/g-string-array-in-struct-crash-tp7583401.html
Sent from the MinGW-users mailing list archive at Nabble.com.
|