Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemartinlogan committed Oct 19, 2023
1 parent 7986794 commit 606fa58
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 606fa58

Please sign in to comment.