Skip to content

Commit b3acf29

Browse files
committed
Fixed build error
1 parent 6b9aacf commit b3acf29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/algorithms/map_sympy.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ bool map_sympy::can_apply(iterator st)
1818
for(auto& ind: ind_free) {
1919
const Coordinate *cdn=kernel.properties.get_composite<Coordinate>(ind.second, true);
2020
const Symbol *smb=kernel.properties.get_composite<Symbol>(ind.second, true);
21-
if(cdn==false && smb==false)
21+
if(cdn==0 && smb==0)
2222
return false;
2323
}
2424
return (ind_dummy.size()==0);

0 commit comments

Comments
 (0)