| 152 | } |
| 153 | |
| 154 | static bool userfunc_referenced(int index, const macromap &mm) |
| 155 | { |
| 156 | for (const auto &entry : mm) |
| 157 | if (userfunc_index(entry.second) == index) |
| 158 | return true; |
| 159 | |
| 160 | return false; |
| 161 | } |
| 162 | |
| 163 | static bool userfunc_referenced(int index) |
| 164 | { |
no test coverage detected