Project Home
Project Home
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
BroadcastCommunity.qnx.com will be offline from May 31 6:00pm until June 2 12:00AM for upcoming system upgrades. For more information please go to https://community.qnx.com/sf/discussion/do/listPosts/projects.bazaar/discussion.bazaar.topc28418
Forum Topic - No stringstream?: Page 1 of 3 (3 Items)
   
No stringstream?  
I have code that goes like this:

#include <sstream>
#include <iostream>

Cartesian Cartesian::BuildFromString(const char* specString)
{
std::stringstream myStream(specString);
.
.
.
}

This fails to compile with the error, " 'stringstream' undeclared in namespace 'std' .


What's the problem here?

I see other posts on qnx.com to the effect that others are using std::stringstream with no problem, so why doesn't it 
work for ME?