This website works better with JavaScript.
Home
Explore
Help
Sign In
visus
/
teensy-cores
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fix warning: comparison is always false due to limited range of data type
main
Frank
7 years ago
parent
0400e066fd
commit
dc1426be97
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
+1
-1
teensy3/Stream.cpp
+ 1
- 1
teensy3/Stream.cpp
View File
@@ -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();
Write
Preview
Loading…
Cancel
Save