Skip to content

Commit

Permalink
Merge pull request #626 from lukemartinlogan/dev
Browse files Browse the repository at this point in the history
Fix lint issues
  • Loading branch information
lukemartinlogan authored Oct 19, 2023
2 parents 65a5564 + 606fa58 commit bfd01f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/hermes/score_histogram.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ struct HistEntry {
HistEntry() : x_(0) {}

/** Constructor */
HistEntry(int x) : x_(x) {}
explicit HistEntry(int x) : x_(x) {}

/** Copy constructor */
HistEntry(const HistEntry &other) : x_(other.x_.load()) {}
explicit HistEntry(const HistEntry &other) : x_(other.x_.load()) {}

/** Copy operator */
HistEntry &operator=(const HistEntry &other) {
Expand Down

0 comments on commit bfd01f2

Please sign in to comment.