| 9 | |
| 10 | // Used to support ordered containers. |
| 11 | class CompareDatabase { public: |
| 12 | inline bool operator() (Database const * const a, Database const * const b) const { |
| 13 | return a < b; |
| 14 | } |
| 15 | }; |
| 16 | class CompareStatement { public: |
| 17 | inline bool operator() (Statement const * const a, Statement const * const b) const { |
| 18 | return Statement::Compare(a, b); |
nothing calls this directly
no outgoing calls
no test coverage detected