Skip to content
Snippets Groups Projects
  1. Oct 05, 2020
  2. Oct 04, 2020
  3. Oct 02, 2020
  4. Oct 01, 2020
  5. Sep 30, 2020
  6. Sep 25, 2020
  7. Sep 23, 2020
  8. Sep 17, 2020
  9. Sep 15, 2020
  10. Sep 14, 2020
  11. Sep 11, 2020
  12. Sep 10, 2020
  13. Sep 09, 2020
  14. Sep 01, 2020
  15. Aug 31, 2020
  16. Aug 30, 2020
  17. Aug 23, 2020
  18. Aug 18, 2020
  19. Aug 17, 2020
  20. Aug 14, 2020
    • Gábor Szalai's avatar
      Remove leading zero warning from str2float compiler part (bug 566028) · bcab9cf8
      Gábor Szalai authored
      
      The standard explicitly allow the leading zero for str2float
      Leading zero warning is not needed as it is allowed.
      
      C.1.29  Character string to float
      str2float(in charstring invalue) return float This function
      converts a charstring comprising a number into a float value.
      The format of the number in the charstring shall follow rules
      in clause 6.1.0, items a) or b) with the following exceptions:
      
      leading zeros are allowed;
      
      EXAMPLE:
      
      str2float("12345.6") // is the same as str2float("123.456E+02")
      
      Change-Id: I0e29260f893874d4b34372cd064882bb51087260
      Signed-off-by: default avatarGabor Szalai <gabor.szalai@ericsson.com>
      bcab9cf8
  21. Aug 13, 2020
    • Gábor Szalai's avatar
      Remove leading zero warning from str2float (bug 566028) · 06fb83ab
      Gábor Szalai authored
      
      The standard explicitly allow the leading zero for str2float
      Leading zero warning is not needed as it is allowed.
      
      C.1.29  Character string to float
      str2float(in charstring invalue) return float This function
      converts a charstring comprising a number into a float value.
      The format of the number in the charstring shall follow rules
      in clause 6.1.0, items a) or b) with the following exceptions:
      
      leading zeros are allowed;
      
      EXAMPLE:
      
      str2float("12345.6") // is the same as str2float("123.456E+02")
      
      Change-Id: Ia3a81017b234dae493cd33ccc4ce3ea124727be2
      Signed-off-by: default avatarGabor Szalai <gabor.szalai@ericsson.com>
      06fb83ab
  22. Aug 12, 2020
  23. Aug 11, 2020
Loading