DEBSOURCES
Skip Quicknav
sources / c%2B%2B-annotations / 13.02.02-1 / yo / functiontemplates / examples / lvalue.cc
1234567891011
#include <cmath> template<typename Type> void call(Type (*fp)(Type), Type const &value) { (*fp)(value); } int main() { call(sqrt, 2.0); }