Files
triton/include/atidlas/cl_ext/compare.hpp

20 lines
229 B
C++
Raw Normal View History

#ifndef ATIDLAS_CL_COMPARE_HPP
#define ATIDLAS_CL_COMPARE_HPP
namespace atidlas
{
2015-01-27 16:14:02 -05:00
namespace cl_ext
{
struct compare{
public:
template<class T>
bool operator()(T const & x, T const & y){ return x() < y(); }
};
}
}
#endif