| 1308 | typedef int arg_type; |
| 1309 | enum { SIZE = 1 }; |
| 1310 | arg_type load(const uchar* ptr) { return *ptr; } |
| 1311 | void store(uchar* ptr, arg_type val) { *ptr = (uchar)val; } |
| 1312 | void operator()(arg_type& a, arg_type& b) const |
| 1313 | { |
no outgoing calls
no test coverage detected