Skip to content

Commit

Permalink
[llvm-exegesis][NFC] imports <cerrno>
Browse files Browse the repository at this point in the history
`SubprocessMemory.cpp` depends on `errno` and was likely getting it via
a transitive include, but this prevents building with modules.
  • Loading branch information
cjdb committed Jul 9, 2023
1 parent b4e09c0 commit e1b88a9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions llvm/tools/llvm-exegesis/lib/SubprocessMemory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include "SubprocessMemory.h"
#include "Error.h"
#include "llvm/Support/Error.h"
#include <cerrno>

#ifdef __linux__
#include <fcntl.h>
Expand Down

0 comments on commit e1b88a9

Please sign in to comment.