mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Merge pull request #27673 from qarmin/small_fixes
Small fixes, mostly duplicated code
This commit is contained in:
commit
a342131eba
29 changed files with 32 additions and 60 deletions
|
@ -896,7 +896,7 @@ void GDScriptTokenizerText::_advance() {
|
|||
}
|
||||
hexa_found = true;
|
||||
} else if (!hexa_found && GETCHAR(i) == 'e') {
|
||||
if (hexa_found || exponent_found) {
|
||||
if (exponent_found) {
|
||||
_make_error("Invalid numeric constant at 'e'");
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue