Files
triton/include/atidlas/cl_ext/compare.hpp
Philippe Tillet bbf2f0188e Ported to C++11
2015-02-05 04:43:40 -05:00

20 lines
229 B
C++

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