diff options
Diffstat (limited to 'src/libutil/util.hh')
-rw-r--r-- | src/libutil/util.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libutil/util.hh b/src/libutil/util.hh index 5d0408f9b528..8bedfea9a0de 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -125,11 +125,11 @@ private: public: Nest(); ~Nest(); - void open(Verbosity level, const format & f); + void open(Verbosity level, const FormatOrString & fs); void close(); }; -void printMsg_(Verbosity level, const format & f); +void printMsg_(Verbosity level, const FormatOrString & fs); #define startNest(varName, level, f) \ Nest varName; \ @@ -146,7 +146,7 @@ void printMsg_(Verbosity level, const format & f); #define debug(f) printMsg(lvlDebug, f) -void warnOnce(bool & haveWarned, const format & f); +void warnOnce(bool & haveWarned, const FormatOrString & fs); void writeToStderr(const string & s); |