RTEMS support; using namespace removed from headers

This commit is contained in:
Matej Sekoranja
2011-09-13 09:56:39 +02:00
parent 54d435972b
commit 633801c2ae
30 changed files with 86 additions and 64 deletions

View File

@@ -80,7 +80,7 @@ void ServerResponseHandler::handleResponse(osiSockAddr* responseFrom,
"Invalid (or unsupported) command: %x.", (0xFF&command));
// TODO remove debug output
ostringstream name;
std::ostringstream name;
name<<"Invalid CA header "<<hex<<(int)(0xFF&command);
name<<", its payload buffer";
@@ -415,7 +415,7 @@ void ServerChannelRequesterImpl::channelStateChange(Channel::shared_pointer cons
String ServerChannelRequesterImpl::getRequesterName()
{
stringstream name;
std::stringstream name;
name << "ServerChannelRequesterImpl/" << _channelName << "[" << _cid << "]";
return name.str();
}