Changeset 6788 in ntrip


Ignore:
Timestamp:
Apr 20, 2015, 6:20:10 PM (9 years ago)
Author:
stoecker
Message:

fix warnings

Location:
trunk/BNC/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM/RTCM2.cpp

    r1105 r6788  
    292292// Get next 30bit word from string
    293293
    294 void ThirtyBitWord::get(const string& buf) {
     294void ThirtyBitWord::get(const std::string& buf) {
    295295
    296296  // Check if string is long enough
     
    321321// Get next 30bit word from file
    322322
    323 void ThirtyBitWord::get(istream& inp) {
     323void ThirtyBitWord::get(std::istream& inp) {
    324324
    325325  unsigned char b;
     
    342342// Get next header word from string
    343343
    344 void ThirtyBitWord::getHeader(string& buf) {
     344void ThirtyBitWord::getHeader(std::string& buf) {
    345345
    346346  const unsigned int wordLen = 5; // Number of bytes representing a 30-bit word
     
    381381// Get next header word from file
    382382
    383 void ThirtyBitWord::getHeader(istream& inp) {
     383void ThirtyBitWord::getHeader(std::istream& inp) {
    384384
    385385  unsigned char b;
  • trunk/BNC/src/serial/posix_qextserialport.cpp

    r1406 r6788  
    2222\fn Posix_QextSerialPort::Posix_QextSerialPort()
    2323Default constructor.  Note that the name of the device used by a QextSerialPort constructed with
    24 this constructor will be determined by #defined constants, or lack thereof - the default behavior
     24this constructor will be determined by defined constants, or lack thereof - the default behavior
    2525is the same as _TTY_LINUX_.  Possible naming conventions and their associated constants are:
    2626
  • trunk/BNC/src/serial/qextserialport.cpp

    r1317 r6788  
    2424\fn QextSerialPort::QextSerialPort()
    2525Default constructor.  Note that the naming convention used by a QextSerialPort constructed with
    26 this constructor will be determined by #defined constants, or lack thereof - the default behavior
     26this constructor will be determined by defined constants, or lack thereof - the default behavior
    2727is the same as _TTY_LINUX_.  Possible naming conventions and their associated constants are:
    2828
  • trunk/BNC/src/serial/win_qextserialport.cpp

    r1317 r6788  
    2424\fn Win_QextSerialPort::Win_QextSerialPort()
    2525Default constructor.  Note that the name of the device used by a Win_QextSerialPort constructed
    26 with this constructor will be determined by #defined constants, or lack thereof - the default
     26with this constructor will be determined by defined constants, or lack thereof - the default
    2727behavior is the same as _TTY_LINUX_.  Possible naming conventions and their associated constants
    2828are:
Note: See TracChangeset for help on using the changeset viewer.