Skip to content

Commit

Permalink
remove virtual
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonYao287 committed Feb 1, 2024
1 parent 68a01f6 commit a0886b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/homestore/replication/repl_dev.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class ReplDevListener {
virtual ~ReplDevListener() = default;

void set_repl_dev(shared< ReplDev > rdev) { m_repl_dev = rdev; }
virtual shared< ReplDev > repl_dev() { return m_repl_dev.lock(); }
shared< ReplDev > repl_dev() { return m_repl_dev.lock(); }

/// @brief Called when the log entry has been committed in the replica set.
///
Expand Down

0 comments on commit a0886b2

Please sign in to comment.