mirror of
https://github.com/geode-sdk/geode.git
synced 2025-02-17 00:30:26 -05:00
add default case for version comparisons
This commit is contained in:
parent
d0c2394a1e
commit
5dfff3693f
1 changed files with 2 additions and 0 deletions
|
@ -214,6 +214,8 @@ namespace geode {
|
|||
return version > m_version;
|
||||
case VersionCompare::Exact:
|
||||
return version == m_version;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue