| 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); |
| 19 | } |
| 20 | }; |
| 21 | class CompareBackup { public: |
| 22 | inline bool operator() (Backup const * const a, Backup const * const b) const { |
| 23 | return Backup::Compare(a, b); |
nothing calls this directly
no outgoing calls
no test coverage detected