mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
performance Prefer prefix ++/-- operators for non-primitive types.
This commit is contained in:
@@ -140,7 +140,7 @@ std::vector<CUPnPDevice> CUPnPSocket::Discover(std::string service)
|
||||
if (line.substr(0,7) == "http://")
|
||||
{
|
||||
std::vector<CUPnPDevice>::iterator i;
|
||||
for (i=devices.begin(); i != devices.end(); i++)
|
||||
for (i=devices.begin(); i != devices.end(); ++i)
|
||||
if (line == i->descurl)
|
||||
goto found;
|
||||
try
|
||||
|
Reference in New Issue
Block a user