| 68 | //------------------------------------------------------------------------------ |
| 69 | template <typename T> |
| 70 | inline bool |
| 71 | Compare(const T & t1, const T & t2, const char * actual, const char * expected, const char * file, int line) |
| 72 | { |
| 73 | return (t1 == t2) ? true : false; |
| 74 | } |
| 75 | |
| 76 | |
| 77 | //------------------------------------------------------------------------------ |
nothing calls this directly
no outgoing calls
no test coverage detected