Return true iff 'a' is "before" 'b'
| 161 | |
| 162 | // Return true iff 'a' is "before" 'b' |
| 163 | bool CompareStrings(const string& a, const string& b) { return (a < b); } |
| 164 | |
| 165 | template <typename T> |
| 166 | void TestNumberOrdering() { |
no outgoing calls
no test coverage detected