Changeset 8253 in ntrip for trunk/BNC/src/bncephuser.cpp


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

fix include incompatibilities

Location:
trunk/BNC
Files:
3 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/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.