Switch to unified view

a/libupnpp/control/description.hxx b/libupnpp/control/description.hxx
...
...
103
        std::ostringstream os;
103
        std::ostringstream os;
104
        os << "DEVICE " << " {deviceType [" << deviceType <<
104
        os << "DEVICE " << " {deviceType [" << deviceType <<
105
            "] friendlyName [" << friendlyName <<
105
            "] friendlyName [" << friendlyName <<
106
            "] UDN [" << UDN <<
106
            "] UDN [" << UDN <<
107
            "] URLBase [" << URLBase << "] Services:" << std::endl;
107
            "] URLBase [" << URLBase << "] Services:" << std::endl;
108
        for (auto& serv: services) {
108
        for (auto it = services.begin(); it != services.end(); it++) {
109
            os << "    " << serv.dump();
109
            os << "    " << it->dump();
110
        }
110
        }
111
        os << "}" << std::endl;
111
        os << "}" << std::endl;
112
        return os.str();
112
        return os.str();
113
    }
113
    }
114
};
114
};