diff --git a/Contractor/Contractor.h b/Contractor/Contractor.h index d877a56b9..ccaaab35e 100644 --- a/Contractor/Contractor.h +++ b/Contractor/Contractor.h @@ -975,8 +975,8 @@ class Contractor // This bias function takes up 22 assembly instructions in total on X86 inline bool bias(const NodeID a, const NodeID b) const { - unsigned short hasha = fast_hash(a); - unsigned short hashb = fast_hash(b); + const unsigned short hasha = fast_hash(a); + const unsigned short hashb = fast_hash(b); // The compiler optimizes that to conditional register flags but without branching // statements!