| 72 | /// \returns the passed in Module. |
| 73 | template<typename T> |
| 74 | void opers_comparison(Module& m) |
| 75 | { |
| 76 | operators::equal<T>(m); |
| 77 | operators::greater_than<T>(m); |
| 78 | operators::greater_than_equal<T>(m); |
| 79 | operators::less_than<T>(m); |
| 80 | operators::less_than_equal<T>(m); |
| 81 | operators::not_equal<T>(m); |
| 82 | } |
| 83 | |
| 84 | |
| 85 |
nothing calls this directly
no outgoing calls
no test coverage detected