| 252 | } |
| 253 | |
| 254 | int |
| 255 | Variable::get_seq_num(void) const |
| 256 | { |
| 257 | size_t index = name.find('_'); |
| 258 | assert(index != string::npos); |
| 259 | return StringUtils::str2int(name.substr(index+1)); |
| 260 | } |
| 261 | |
| 262 | /* |
| 263 | * return if this is the field of an array member |
nothing calls this directly
no outgoing calls
no test coverage detected