Skip to content

Commit

Permalink
Fix bad implementation of tribool
Browse files Browse the repository at this point in the history
  • Loading branch information
tindy2013 committed Jul 26, 2020
1 parent 6b2a2bd commit 388e49b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/misc.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class tribool

template <typename T> tribool(const T &value) { set(value); }

explicit tribool(const tribool &value) { *this = value; }
tribool(const tribool &value) { *this = value; }

~tribool() = default;

Expand Down

0 comments on commit 388e49b

Please sign in to comment.