Ignore:
Timestamp:
Jan 26, 2023, 12:19:20 PM (15 months ago)
Author:
stuerze
Message:

minor changes to be msvc compatible

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/clock_and_orbit/clock_orbit_rtcm.cpp

    r9210 r9962  
    2121size_t SsrCorrRtcm::MakeClockOrbit(const struct ClockOrbit *co, ClockOrbitType type,
    2222    int moremessagesfollow, char *buffer, size_t size) {
    23   unsigned int status[CLOCKORBIT_SATNUM][COBOFS_NUM], i, s;
    24 
    25   memset(status, 0, sizeof(status));
     23  std::vector< std::vector<unsigned int> > status(CLOCKORBIT_SATNUM, std::vector<unsigned int>(COBOFS_NUM));
     24  unsigned int i, s;
     25
     26  //memset(status, 0, sizeof(status));
    2627
    2728  STARTDATA
Note: See TracChangeset for help on using the changeset viewer.