chore: update to cxx20

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97 2025-07-09 18:43:24 +03:00
parent 9565affa64
commit 29231e2038
No known key found for this signature in database
GPG key ID: 55EF5DA53DB36318
4 changed files with 7 additions and 18 deletions

View file

@ -20,9 +20,9 @@ class JavaVersion {
JavaVersion& operator=(const QString& rhs);
bool operator<(const JavaVersion& rhs);
bool operator==(const JavaVersion& rhs);
bool operator>(const JavaVersion& rhs);
bool operator<(const JavaVersion& rhs) const;
bool operator==(const JavaVersion& rhs) const;
bool operator>(const JavaVersion& rhs) const;
bool requiresPermGen() const;
bool defaultsToUtf8() const;