GobySoft / dccl

Dynamic Compact Control Language
Other
17 stars 13 forks source link

Non standard precision on uint64 time is calculated wrong #136

Closed tsaubergine closed 6 months ago

tsaubergine commented 6 months ago
            return FieldCodecBase::dccl_field_options().precision() +
                   (double)std::log10((double)conversion_factor);

I think should be

            return FieldCodecBase::dccl_field_options().precision();