1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

lib/ip: flip output of IpIdentifier (name first, VLNV second)

This commit is contained in:
daniel-k 2017-12-21 21:17:26 +01:00
parent c105f1c925
commit ab183d2111

View file

@ -59,7 +59,7 @@ public:
friend std::ostream&
operator<< (std::ostream& stream, const IpIdentifier& id)
{ return stream << "VLNV: " << id.vlnv << " Name: " << id.name; }
{ return stream << " Name: " << id.name << "(VLNV: " << id.vlnv << ")"; }
Vlnv vlnv;
std::string name;