diff options
author | rune-scape <allie.smith.epic@gmail.com> | 2022-12-05 21:46:47 -0500 |
---|---|---|
committer | rune-scape <allie.smith.epic@gmail.com> | 2022-12-05 21:46:47 -0500 |
commit | e79be6ce07ed8c89011f759ecade070a3bd5a806 (patch) | |
tree | fbe13a625acf7630c4a5aeb4a8664e6c67472818 /core/variant/variant.h | |
parent | f3e6750a7e4702918e05f42b1376e30e652f2f90 (diff) |
Unify String and StringName
Diffstat (limited to 'core/variant/variant.h')
-rw-r--r-- | core/variant/variant.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/variant/variant.h b/core/variant/variant.h index c5be609184..f7221e206f 100644 --- a/core/variant/variant.h +++ b/core/variant/variant.h @@ -797,6 +797,10 @@ struct VariantComparator { static _FORCE_INLINE_ bool compare(const Variant &p_lhs, const Variant &p_rhs) { return p_lhs.hash_compare(p_rhs); } }; +struct StringLikeVariantComparator { + static bool compare(const Variant &p_lhs, const Variant &p_rhs); +}; + Variant::ObjData &Variant::_get_obj() { return *reinterpret_cast<ObjData *>(&_data._mem[0]); } |