Changeset 8253 in ntrip for trunk/BNC/src


Ignore:
Timestamp:
Jan 10, 2018, 2:12:42 PM (6 years ago)
Author:
stoecker
Message:

fix include incompatibilities

Location:
trunk/BNC
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC

    • Property svn:ignore
      •  

        old new  
        11Makefile
        22bnc
        3 
        43.settings
        5 
        64.project
        7 
        85.cproject
         6.qmake.stash
  • trunk/BNC/src

    • Property svn:ignore
      •  

        old new  
        66release
        77html
         8.qmake.stash
  • trunk/BNC/src/PPP_SSR_I/pppFilter.cpp

    r8204 r8253  
    295295  bancroft(BB, _xcBanc);
    296296
    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))) {
    300300    return failure;
    301301  }
  • trunk/BNC/src/bncephuser.cpp

    r8215 r8253  
    3838 * -----------------------------------------------------------------------*/
    3939
     40#include <cmath>
    4041#include <iostream>
    4142
     
    205206  const double MINDIST = 2.e7;
    206207  const double MAXDIST = 6.e7;
    207   if (rr < MINDIST || rr > MAXDIST || isnan(rr)) {
     208  if (rr < MINDIST || rr > MAXDIST || std::isnan(rr)) {
    208209    eph->setCheckState(t_eph::bad);
    209210    return;
Note: See TracChangeset for help on using the changeset viewer.