--
You received this message because you are subscribed to the Google Groups "omnetpp" group.
To unsubscribe from this group and stop receiving emails from it, send an email to omnetpp+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Have you included the header?
#include <string> // std::string, std::to_string
Strange, I can compile without problems
std::string str;
for (int i = 0; i < numQueues; i++)
{
str = "wlanDataQueue" + std::to_string(i);
dataQueue[i].setName(str.c_str());
http://stackoverflow.com/questions/12975341/to-string-is-not-a-member-of-std-says-so-g
I suppose that you are working in Windows with an old version of omnet, there is a problem with to_string in mingw with old versions