Searched defs:execute_traits_impl (Results 1 – 1 of 1) sorted by relevance
50 struct execute_traits_impl { struct51 typedef Result result_type;53 static Result execute(Op op) { return op(); } in execute()59 struct execute_traits_impl<void> { struct60 typedef int result_type;62 static int execute(Op op) { op(); return 0; } in execute()