diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-07-07 14:37:47 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-07-07 14:37:47 +0200 |
commit | 4055cfee3643ecf921e7c3e1b6ad7388271460d8 (patch) | |
tree | dfa2ebf1d08dec6911184b6575916791da99b107 /src/libutil/error.hh | |
parent | 7c9ece5dcaf6407449616c9d2d302853829c4f7d (diff) |
Fix coverage build
Diffstat (limited to 'src/libutil/error.hh')
-rw-r--r-- | src/libutil/error.hh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libutil/error.hh b/src/libutil/error.hh index 1b0fb43b8..f4b3f11bb 100644 --- a/src/libutil/error.hh +++ b/src/libutil/error.hh @@ -1,8 +1,8 @@ #pragma once - #include "ref.hh" #include "types.hh" +#include "fmt.hh" #include <cstring> #include <list> @@ -10,7 +10,9 @@ #include <map> #include <optional> -#include "fmt.hh" +#include <sys/types.h> +#include <sys/stat.h> +#include <fcntl.h> /* Before 4.7, gcc's std::exception uses empty throw() specifiers for * its (virtual) destructor and what() in c++11 mode, in violation of spec |