How to declare a const reference to function type – stackoverflow.com

#include <iostream> #include <type_traits> void func() { } int main() { using T = const decltype(func) &; using T2 = void (&)(); std::cout << std::boolalpha << ...

from Hot Questions - Stack Exchange OnStackOverflow
via Blogspot

Share this

0 Comment to "How to declare a const reference to function type – stackoverflow.com"