| 34 | // Simple function that performs no computation |
| 35 | template<int addTo> |
| 36 | int |
| 37 | emptyFunction() { |
| 38 | return addTo; |
| 39 | } |
| 40 | |
| 41 | // Used to approximate the cost to dereference to a function array |
| 42 | static int (*functionArray[50])() { |
nothing calls this directly
no outgoing calls
no test coverage detected