| 243 | } |
| 244 | |
| 245 | void soar_destroy_callback(soar_callback* cb) |
| 246 | { |
| 247 | if (cb->free_function) |
| 248 | { |
| 249 | cb->free_function(cb->data); |
| 250 | } |
| 251 | delete cb; |
| 252 | } |
| 253 | |
| 254 | // voigtjr: removed inline in an attempt to quell linker error |
| 255 | //inline void soar_invoke_callbacks (agent* thisAgent, |
no outgoing calls
no test coverage detected