diff options
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/finally.hh | 2 | ||||
-rw-r--r-- | src/libutil/logging.hh | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/libutil/finally.hh b/src/libutil/finally.hh index 47c64deaecea..7760cfe9a410 100644 --- a/src/libutil/finally.hh +++ b/src/libutil/finally.hh @@ -1,5 +1,7 @@ #pragma once +#include <functional> + /* A trivial class to run a function at the end of a scope. */ class Finally { diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh index ba99a81c3826..3e6c4b54853c 100644 --- a/src/libutil/logging.hh +++ b/src/libutil/logging.hh @@ -79,6 +79,7 @@ extern Verbosity verbosity; /* suppress msgs > this */ #define printError(args...) printMsg(lvlError, args) #define printInfo(args...) printMsg(lvlInfo, args) #define debug(args...) printMsg(lvlDebug, args) +#define vomit(args...) printMsg(lvlVomit, args) void warnOnce(bool & haveWarned, const FormatOrString & fs); |