mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 12:36:52 +03:00
Rolling 20220930
This commit is contained in:
20
Changelog.md
20
Changelog.md
@@ -2,6 +2,26 @@
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- n.a.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- n.a.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- [#1116](https://github.com/jomjol/AI-on-the-edge-device/issues/1116) precision problem at setting prevalue
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
- n.a.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [12.0.1] - 2022-09-29
|
## [12.0.1] - 2022-09-29
|
||||||
|
|
||||||
Improve **u**ser e**x**perience
|
Improve **u**ser e**x**perience
|
||||||
|
|||||||
@@ -404,7 +404,7 @@ string ClassFlowControll::GetPrevalue(std::string _number)
|
|||||||
|
|
||||||
std::string ClassFlowControll::UpdatePrevalue(std::string _newvalue, std::string _numbers, bool _extern)
|
std::string ClassFlowControll::UpdatePrevalue(std::string _newvalue, std::string _numbers, bool _extern)
|
||||||
{
|
{
|
||||||
float zw;
|
double zw;
|
||||||
char* p;
|
char* p;
|
||||||
|
|
||||||
_newvalue = trim(_newvalue);
|
_newvalue = trim(_newvalue);
|
||||||
@@ -416,7 +416,7 @@ std::string ClassFlowControll::UpdatePrevalue(std::string _newvalue, std::string
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
zw = strtof(_newvalue.c_str(), &p);
|
zw = strtod(_newvalue.c_str(), &p);
|
||||||
if (zw == 0)
|
if (zw == 0)
|
||||||
return "- Error in String to Value Conversion!!! Must be of format value=123.456";
|
return "- Error in String to Value Conversion!!! Must be of format value=123.456";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user