Skip to content

Commit

Permalink
Fix: Added return statement in non-void functions
Browse files Browse the repository at this point in the history
  • Loading branch information
s-bose7 committed Jun 21, 2024
1 parent 99d15f9 commit ea6aa71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/snapshot.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

template<typename K, typename V>
bool create_binary_snapshot(const MemCache<K, V>& memcache, const string& snapshotFile){

return false;
}


template<typename K, typename V>
bool load_binary_snapshot(MemCache<K, V>& memcache, const string& snapshotFile) {

return false;
}

#endif

0 comments on commit ea6aa71

Please sign in to comment.