diff options
author | Hop311 <Hop3114@gmail.com> | 2024-01-22 21:18:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-22 21:18:53 +0100 |
commit | 10f1f250883529e809d18a369f3668cfacd3bfd1 (patch) | |
tree | 7cd8a379963af18c24f8dabfe7525b39f2333e0c /src/openvic-simulation/scripts/Condition.hpp | |
parent | 8205732a1b95f018f0898a2a4bc62e22f5bee0d3 (diff) | |
parent | caa2f31d536f568e485f15537db5e2f79f7616d5 (diff) |
Merge pull request #135 from OpenVicProject/misc-changes
Miscellaneous bug fixes and format cleanup
Diffstat (limited to 'src/openvic-simulation/scripts/Condition.hpp')
-rw-r--r-- | src/openvic-simulation/scripts/Condition.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/openvic-simulation/scripts/Condition.hpp b/src/openvic-simulation/scripts/Condition.hpp index e239142..5aa45e8 100644 --- a/src/openvic-simulation/scripts/Condition.hpp +++ b/src/openvic-simulation/scripts/Condition.hpp @@ -77,13 +77,13 @@ namespace OpenVic { template<> struct enable_bitfield<identifier_type_t> : std::true_type {}; /* Returns true if the values have any bit in common. */ - constexpr inline bool share_value_type(value_type_t lhs, value_type_t rhs) { + inline constexpr bool share_value_type(value_type_t lhs, value_type_t rhs) { return (lhs & rhs) != value_type_t::NO_TYPE; } - constexpr inline bool share_scope(scope_t lhs, scope_t rhs) { + inline constexpr bool share_scope(scope_t lhs, scope_t rhs) { return (lhs & rhs) != scope_t::NO_SCOPE; } - constexpr inline bool share_identifier_type(identifier_type_t lhs, identifier_type_t rhs) { + inline constexpr bool share_identifier_type(identifier_type_t lhs, identifier_type_t rhs) { return (lhs & rhs) != identifier_type_t::NO_IDENTIFIER; } |