diff options
author | Andrzej Hunt <andrzej.hunt@collabora.com> | 2014-06-30 08:21:32 +0200 |
---|---|---|
committer | Andrzej Hunt <andrzej.hunt@collabora.com> | 2014-06-30 08:27:10 +0200 |
commit | fb597ee98f69dd3243c45cb0ff76516f7ec31c73 (patch) | |
tree | d8f988b4fa5fbb672037cc56b70d3ec452c16c21 /sd | |
parent | e65ba1ad3ec9af16efc397a041ad607eb87edc91 (diff) |
-WaE: nested template problems.
warning: ">>" operator will be treated as two right angle brackets in C++0x
error: ">>" should be "> >" within a nested template argument list
and
Change-Id: Id3f555d606887fb60db016ab14fb0541ccfd0d7a
error: "<::" cannot begin a template-argument list
note: "<:" is an alternate spelling for "[". Insert whitespace between "<" and "::"
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/remotecontrol/Server.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/remotecontrol/Server.cxx b/sd/source/ui/remotecontrol/Server.cxx index d80b8463abdc..5ec118400d2c 100644 --- a/sd/source/ui/remotecontrol/Server.cxx +++ b/sd/source/ui/remotecontrol/Server.cxx @@ -317,7 +317,7 @@ bool RemoteServer::connectClient( ::boost::shared_ptr< ClientInfo > pClient, con sCommunicators.push_back( pCommunicator ); - for ( vector<::boost::shared_ptr<ClientInfoInternal>>::iterator aIt = spServer->mAvailableClients.begin(); + for ( vector< ::boost::shared_ptr< ClientInfoInternal > >::iterator aIt = spServer->mAvailableClients.begin(); aIt != spServer->mAvailableClients.end(); ++aIt ) { if ( pClient == *aIt ) |