- Timestamp:
- Jan 10, 2018, 2:12:42 PM (7 years ago)
- Location:
- trunk/BNC
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC
- Property svn:ignore
-
old new 1 1 Makefile 2 2 bnc 3 4 3 .settings 5 6 4 .project 7 8 5 .cproject 6 .qmake.stash
-
- Property svn:ignore
-
trunk/BNC/qwtpolar
- Property svn:ignore
-
old new 5 5 debug 6 6 release 7 .qmake.stash
-
- Property svn:ignore
-
trunk/BNC/src
- Property svn:ignore
-
old new 6 6 release 7 7 html 8 .qmake.stash
-
- Property svn:ignore
-
trunk/BNC/src/PPP_SSR_I/pppFilter.cpp
r8204 r8253 295 295 bancroft(BB, _xcBanc); 296 296 297 if ( isnan(_xcBanc(1)) ||298 isnan(_xcBanc(2)) ||299 isnan(_xcBanc(3))) {297 if (std::isnan(_xcBanc(1)) || 298 std::isnan(_xcBanc(2)) || 299 std::isnan(_xcBanc(3))) { 300 300 return failure; 301 301 } -
trunk/BNC/src/bncephuser.cpp
r8215 r8253 38 38 * -----------------------------------------------------------------------*/ 39 39 40 #include <cmath> 40 41 #include <iostream> 41 42 … … 205 206 const double MINDIST = 2.e7; 206 207 const double MAXDIST = 6.e7; 207 if (rr < MINDIST || rr > MAXDIST || isnan(rr)) {208 if (rr < MINDIST || rr > MAXDIST || std::isnan(rr)) { 208 209 eph->setCheckState(t_eph::bad); 209 210 return;
Note:
See TracChangeset
for help on using the changeset viewer.