Skip to content
Snippets Groups Projects
Commit c46b1424 authored by jwindley's avatar jwindley
Browse files

Add return statement to comparator

parent 22780201
No related branches found
No related tags found
No related merge requests found
...@@ -135,7 +135,7 @@ public: ...@@ -135,7 +135,7 @@ public:
const bool eval( sched_obj_list_t obj_data, int32_t idx ) const bool eval( sched_obj_list_t obj_data, int32_t idx )
{ {
(int32_t) m_func( obj_data, idx, NULL ) > m_val; return (int32_t) m_func( obj_data, idx, NULL ) > m_val;
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment