Parcourir la source

fix warning: comparison is always false due to limited range of data type

main
Frank il y a 7 ans
Parent
révision
dc1426be97
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      teensy3/Stream.cpp

+ 1
- 1
teensy3/Stream.cpp Voir le fichier

@@ -176,7 +176,7 @@ float Stream::parseFloat(char skipChar){
boolean isNegative = false;
boolean isFraction = false;
long value = 0;
char c;
int c;
float fraction = 1.0;

c = peekNextDigit();

Chargement…
Annuler
Enregistrer