Home
last modified time | relevance | path

Searched defs:execute_traits_impl (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/boost/iostreams/detail/
Dexecute.hpp50 struct execute_traits_impl { struct
51 typedef Result result_type;
53 static Result execute(Op op) { return op(); } in execute()
59 struct execute_traits_impl<void> { struct
60 typedef int result_type;
62 static int execute(Op op) { op(); return 0; } in execute()