| 274 | } |
| 275 | |
| 276 | [[nodiscard]] |
| 277 | std::string format_name() const { |
| 278 | std::string retval = ns(); |
| 279 | if (!retval.empty()) |
| 280 | retval += '.'; |
| 281 | retval += name(); |
| 282 | return retval; |
| 283 | } |
| 284 | |
| 285 | private: |
| 286 | // Accessor for Instance member. Used only in debug methods and toString(). |
no test coverage detected