Skip to content

Commit 27d4afe

Browse files
committed
Fix "or" operator unable to compile in msvc2015
1 parent 45c43f0 commit 27d4afe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

munkres.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ template<typename T> struct MunkresData
142142
for(auto r = 0u; r < side(); ++r) {
143143
if(r_mask[r]) continue;
144144
for(auto c = 0u; c < side(); ++c) {
145-
if(r_mask[r] or c_mask[c]) continue;
145+
if(r_mask[r] || c_mask[c]) continue;
146146
if(C(r, c) == zero) {
147147
M(r, c) = STAR;
148148
r_mask[r] = true;

0 commit comments

Comments
 (0)