Skip to content
Snippets Groups Projects
Commit c2c4a1e8 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

DRTVWR-418: Make operator()() method for comparator functor const.

parent 434f0e16
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,7 @@ class LLHeteroMap ...@@ -77,7 +77,7 @@ class LLHeteroMap
// not always equal &typeid(A) in some other part. Use special comparator. // not always equal &typeid(A) in some other part. Use special comparator.
struct type_info_ptr_comp struct type_info_ptr_comp
{ {
bool operator()(const std::type_info* lhs, const std::type_info* rhs) bool operator()(const std::type_info* lhs, const std::type_info* rhs) const
{ {
return lhs->before(*rhs); return lhs->before(*rhs);
} }
......
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