mirror of
https://github.com/OpenMW/openmw.git
synced 2025-05-04 21:41:28 +00:00
Explicitly use std::strong_ordering
Otherwise it's ambiguous how to build <=> from <, == and >
This commit is contained in:
parent
c23e5e1059
commit
bf24bb71b1
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ namespace Config
|
||||||
// path of openmw.cfg, e.g. to resolve relative paths
|
// path of openmw.cfg, e.g. to resolve relative paths
|
||||||
QString context = "";
|
QString context = "";
|
||||||
|
|
||||||
friend auto operator<=>(const SettingValue&, const SettingValue&) = default;
|
friend std::strong_ordering operator<=>(const SettingValue&, const SettingValue&) = default;
|
||||||
};
|
};
|
||||||
|
|
||||||
class GameSettings
|
class GameSettings
|
||||||
|
|
Loading…
Reference in a new issue