Changeset 11097


Ignore:
Timestamp:
06/21/11 22:18:59 (13 years ago)
Author:
tbretz
Message:
Added const qualifiers to factOut and factStat
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/EventBuilderWrapper.h

    r11095 r11097  
    11051105    }
    11061106
    1107     void factOut(int severity, int err, char *message)
     1107    void factOut(int severity, int err, const char *message)
    11081108    {
    11091109        // FIXME: Make the output to the console stream thread-safe
     
    11151115            str << err;
    11161116        str << "): " << message;
     1117
    11171118        EventBuilderWrapper::This->fMsg.Update(str, severity);
    11181119    }
    11191120
    1120     void factStat(int severity, int err, char* message )
     1121    void factStat(int severity, int err, const char* message )
    11211122    {
    11221123        if (err!=-1)
Note: See TracChangeset for help on using the changeset viewer.