Exemplo n.º 1
0
Arquivo: main.cpp Projeto: CCJY/coliru
void f(T)
{
    static_assert(T(), "first requirement failed to meet.");
    f_impl(T());
}
Exemplo n.º 2
0
 int f(Tester const& t, const Name& name_)
 {
     return f_impl(f_parameters()(t, name_));
 }
Exemplo n.º 3
0
 int f_list(Params const& params)
 {
     return f_impl(params);
 }
Exemplo n.º 4
0
 int f(Tester const& t, const Name& name_, 
     const Value& value_, const Index& index_)
 {
     return f_impl(f_parameters()(t, name_, value_, index_));
 }