| 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); |
| 24 | } |
| 25 | }; |
| 26 | |
| 27 | // Proper error handling logic for when an sqlite3 operation fails. |
| 28 | void ThrowDatabaseError(Napi::Env env); |
nothing calls this directly
no outgoing calls
no test coverage detected