diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2010-07-29 14:51:05 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2010-07-29 14:51:05 +0200 |
commit | ca0d389c8969ddb679358ca16e4bcddfcdaf9b03 (patch) | |
tree | 21acfcc7fdc65ce1b6a3c13e94a5d3a7217838ca /apt-pkg/contrib | |
parent | 12be8a62d1abb9253a4695badbf70e7210f9b0d2 (diff) |
add inline DumpError() to avoid subtle API break
Diffstat (limited to 'apt-pkg/contrib')
-rw-r--r-- | apt-pkg/contrib/error.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/apt-pkg/contrib/error.h b/apt-pkg/contrib/error.h index d39500427..4af0302c0 100644 --- a/apt-pkg/contrib/error.h +++ b/apt-pkg/contrib/error.h @@ -217,10 +217,22 @@ public: /*{{{*/ * * \param threshold minimum level printed */ - void inline DumpErrors(MsgType const &threshold = WARNING) { + void inline DumpErrors(MsgType const &threshold) { DumpErrors(std::cerr, threshold); } + // mvo: we do this instead of using a default parameter in the + // previous declaration to avoid a (subtle) API break for + // e.g. sigc++ and mem_fun0 + /** \brief dumps the messages of type WARNING or higher to std::cerr + * + * Note that all messages are discarded, displayed or not. + * + */ + void inline DumpErrors() { + DumpErrors(WARNING); + } + /** \brief put the current Messages into the stack * * All "old" messages will be pushed into a stack to |