Changeset 626 in ntrip


Ignore:
Timestamp:
Dec 16, 2007, 5:26:43 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM/GPSDecoder.h

    r625 r626  
    7777  }
    7878
    79   ~t_obs() {std::cout << "delete " << _o.StatID << " " << _status << std::endl;}
     79  ~t_obs() {}
    8080
    8181  t_obsInternal _o;
  • trunk/BNC/bncrinex.cpp

    r622 r626  
    468468void bncRinex::deepCopy(const p_obs obs) {
    469469  p_obs newObs = new t_obs();
    470   memcpy(newObs, obs, sizeof(*obs));
     470  memcpy(&newObs->_o, &obs->_o, sizeof(t_obsInternal));
    471471  _obs.push_back(newObs);
    472472}
Note: See TracChangeset for help on using the changeset viewer.