#ifndef ELFSPY_FUNCTION_H #define ELFSPY_FUNCTION_H namespace spy { /** * @namespace spy * @union Function * Conversion helper from function to address */ template union Function { R (*address_)(Args...); void* pointer_; }; } // namespace spy #endif