#ifndef __cxz_func_cc_h__ #define __cxz_func_cc_h__ #include "func.h" namespace CNORXZ { template constexpr decltype(auto) ZeroF::operator()(const T&... as) const { return 0; } template constexpr decltype(auto) NoF::operator()(const T&... as) const { return; } } #endif