Skip to content

Commit

Permalink
Merge pull request #1 from samarahu/ceph
Browse files Browse the repository at this point in the history
Remove Problem Ctors to Ensure Successful Make Check
  • Loading branch information
alimaredia authored Dec 8, 2022
2 parents 3ddf486 + 933568b commit dcfb628
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions includes/cpp_redis/misc/logger.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,14 @@ class logger : public logger_iface {
//! dtor
~logger(void) = default;

//! copy ctor
logger(const logger&) = default;
//! assignment operator
logger& operator=(const logger&) = default;
//! copy ctor: Commented out due to inability to move mutex member variable.
/*
* logger(const logger&) = default;
*/
//! assignment operator: Commented out due to inability to move mutex member variable.
/*
* logger& operator=(const logger&) = default;
*/

public:
//!
Expand Down

0 comments on commit dcfb628

Please sign in to comment.