Changeset 10508


Ignore:
Timestamp:
05/02/11 18:58:57 (14 years ago)
Author:
tbretz
Message:
Removed dependence on Tools::Format()
Location:
trunk/FACT++/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/MessageImp.cc

    r10429 r10508  
    147147//!    Format string according to which the text is formatted
    148148//
     149/*
    149150int MessageImp::Update(int severity, const char *fmt, ...)
    150151{
     
    155156    return Update(str, severity);
    156157}
     158*/
  • trunk/FACT++/src/MessageImp.h

    r10399 r10508  
    3535    int Update(const char *txt, int qos=kInfo) { return Update(std::string(txt), qos); }
    3636    int Update(const std::stringstream &str, int qos=kInfo) { return Update(str.str(), qos); }
    37     int Update(int qos, const char *fmt, ...);
     37//    int Update(int qos, const char *fmt, ...);
    3838
    3939    int Debug(const std::string &str)    { return Update(str, kDebug);   }
Note: See TracChangeset for help on using the changeset viewer.