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:
parent
c105f1c925
commit
ab183d2111
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue