| 127 | } |
| 128 | |
| 129 | const std::string compound_identity::getFullName() const |
| 130 | { |
| 131 | if (scope_parent) |
| 132 | return scope_parent->getFullName() + "." + getName(); |
| 133 | else |
| 134 | return getName(); |
| 135 | } |
| 136 | |
| 137 | static std::mutex *known_mutex = NULL; |
| 138 |
no outgoing calls
no test coverage detected