diff options
author | J08nY <johny@neuromancer.sk> | 2016-06-19 00:05:23 +0200 |
---|---|---|
committer | J08nY <johny@neuromancer.sk> | 2016-06-19 00:12:31 +0200 |
commit | a95a1f47a45a5d8595c6681c28abd31ab0635479 (patch) | |
tree | 9b55ce67b25922b5b5f4f0c470ad082e4f8c0fcf /core/variant.cpp | |
parent | b587a13293840975b53bad3392374ad30a578064 (diff) | |
download | redot-engine-a95a1f47a45a5d8595c6681c28abd31ab0635479.tar.gz |
Remove CHARTYPE_16BITS unused checks
fix #5263
Diffstat (limited to 'core/variant.cpp')
-rw-r--r-- | core/variant.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/variant.cpp b/core/variant.cpp index 472d6cf568..81d10f379a 100644 --- a/core/variant.cpp +++ b/core/variant.cpp @@ -1445,12 +1445,12 @@ Variant::operator unsigned char() const { return 0; } -#ifndef CHARTYPE_16BITS + Variant::operator CharType() const { return operator unsigned int(); } -#endif + Variant::operator float() const { |