Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <HooglyBoogly>2020-08-19 07:41:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-08-19 07:44:42 +0300
commit04ca28a6e078f061b2bd312b02c7823e849fe164 (patch)
treeade5c4402b14b8238352a833e2e8472ab5c2cfda
parent762e4cf221afa6edf6155c302e3839012b169abe (diff)
Fix T77300: Some scientific notation evaluation has incorrect results
Ref D7922
-rw-r--r--source/blender/blenkernel/intern/unit.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/unit.c b/source/blender/blenkernel/intern/unit.c
index efe10b02940..c702a98f5e6 100644
--- a/source/blender/blenkernel/intern/unit.c
+++ b/source/blender/blenkernel/intern/unit.c
@@ -757,7 +757,6 @@ static char *find_next_op(const char *str, char *remaining_str, int len_max)
if (ch_is_op(remaining_str[i])) {
if (scientific_notation) {
scientific_notation = false;
- continue;
}
/* Make sure we don't look backwards before the start of the string. */