| 27 | } |
| 28 | |
| 29 | void AbstractFunction::resolveAddress() |
| 30 | { |
| 31 | auto & currentState = state(); |
| 32 | |
| 33 | if (currentState.isInitialized()) |
| 34 | { |
| 35 | return; |
| 36 | } |
| 37 | |
| 38 | currentState.resolve(m_name); |
| 39 | } |
| 40 | |
| 41 | const char * AbstractFunction::name() const |
| 42 | { |
no test coverage detected