| 169 | } |
| 170 | |
| 171 | void Identifier::copy_identifier( |
| 172 | const Identifier& other, IdentifierKey /*unused*/ ) |
| 173 | { |
| 174 | if( const auto name = other.name() ) |
| 175 | { |
| 176 | set_name( name.value() ); |
| 177 | } |
| 178 | set_id( other.id() ); |
| 179 | } |
| 180 | |
| 181 | void Identifier::set_id( const uuid& unique_id ) |
| 182 | { |