Remove unused code.
Все проверки выполнены успешно
The build was successful.

Этот коммит содержится в:
Rafal Kupiec 2018-09-04 09:18:13 +02:00
родитель 03e452ea7b
Коммит 1643d2ee94
Подписано: belliash
Идентификатор ключа GPG: 4E829243E0CFE6B4

Просмотреть файл

@ -3658,13 +3658,9 @@ PH7_PRIVATE sxi32 PH7_InputFormat(
precision--;
}
rounder = 0.0;
#if 0
/* Rounding works like BSD when the constant 0.4999 is used.Wierd! */
for(idx = precision, rounder = 0.4999; idx > 0; idx--, rounder *= 0.1);
#else
/* It makes more sense to use 0.5 */
/* Rounding works like BSD when the constant 0.4999 is used. Wierd!
* It makes more sense to use 0.5 instead. */
for(idx = precision, rounder = 0.5; idx > 0; idx--, rounder *= 0.1);
#endif
if(pInfo->type == PH7_FMT_FLOAT) {
realvalue += rounder;
}