Skip to content

Commit

Permalink
fix: linter2 - the return of the explicit?
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsek committed Nov 26, 2024
1 parent 46e0796 commit 8e68895
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

#include "Locker.hpp"
#include "Locker.h"
#include "AudioNode.h"
#include "AudioNodeManager.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace audioapi {
// Small easy interface to manage locking
class Locker {
public:
explicit Locker(): lockPtr_(0) {}
Locker(): lockPtr_(0) {}
explicit Locker(std::mutex& lockPtr): lockPtr_(&lockPtr) {
lock();
}
Expand Down

0 comments on commit 8e68895

Please sign in to comment.