IAP GITLAB

Skip to content
Snippets Groups Projects
Commit b08b0952 authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan:
Browse files

fix warning uint128.inl "bitwise or"

parent b3a74a48
No related branches found
No related tags found
1 merge request!516FLUKA improvements
Pipeline #11189 canceled
......@@ -211,11 +211,11 @@ namespace random_iterator {
}
inline bool uint128_t::operator>=(const uint128_t& rhs) const {
return ((*this > rhs) | (*this == rhs));
return ((*this > rhs) || (*this == rhs));
}
inline bool uint128_t::operator<=(const uint128_t& rhs) const {
return ((*this < rhs) | (*this == rhs));
return ((*this < rhs) || (*this == rhs));
}
inline uint128_t uint128_t::operator+(const uint128_t& rhs) const {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment