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

19 lines
224 B
C++
Raw Normal View History

#ifndef ATIDLAS_CL_COMPARE_HPP
#define ATIDLAS_CL_COMPARE_HPP
namespace atidlas
{
namespace cl
{
struct compare{
public:
template<class T>
bool operator()(T const & x, T const & y){ return x() < y(); }
};
}
}
#endif