Hi, please help me with one strange and annoying error. I have code like this in my project:
std::stringstream ss; ss << "Try to create a big string, too big to blow " << (int)property; When i try to run generated code, it permanently stuck in another place near std::vector internals. But when i change code like this: std::stringstream ss; ss << "Try to" << (int)property; In this case whole project works correctly, like charm. If there any thoughts on what could cause such a problem? -- You received this message because you are subscribed to the Google Groups "emscripten-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
