| 161 | } |
| 162 | |
| 163 | static unsigned int addGroup() { |
| 164 | std::vector<OverloadDef> &overloadVect = overloadVectStore(); |
| 165 | unsigned int num = overloadVect.size(); |
| 166 | |
| 167 | // Add a new group of overloaded methods. |
| 168 | overloadVect.resize(num + 1); |
| 169 | |
| 170 | return(num); |
| 171 | } |
| 172 | |
| 173 | static void addMethod(unsigned int num, unsigned int arity, funcPtr method) { |
| 174 | OverloadDef &def = getDef(num); |
nothing calls this directly
no outgoing calls
no test coverage detected