File tree Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 88
88
# include < unistd.h> // library for read/write/sleep/etc. functions
89
89
#endif
90
90
91
- # include < cstring> // library for strerror function (on linux)
92
- # include < iostream>
93
- # include < vector>
91
+ #include < util/exception_utils.h>
92
+ #include < util/invariant.h>
93
+ #include < util/narrow.h>
94
+ #include < util/optional.h>
95
+ #include < util/piped_process.h>
96
+ #include < util/string_utils.h>
94
97
95
- # include " exception_utils.h"
96
- # include " invariant.h"
97
- # include " narrow.h"
98
- # include " optional.h"
99
- # include " piped_process.h"
100
- # include " string_utils.h"
98
+ #include < cstring> // library for strerror function (on linux)
99
+ #include < iostream>
100
+ #include < vector>
101
101
102
102
#ifdef _WIN32
103
103
# define BUFSIZE (1024 * 64 )
Original file line number Diff line number Diff line change @@ -13,8 +13,9 @@ typedef struct _PROCESS_INFORMATION PROCESS_INFORMATION; // NOLINT
13
13
typedef void *HANDLE; // NOLINT
14
14
#endif
15
15
16
- #include " nodiscard.h"
17
- #include " optional.h"
16
+ #include < util/nodiscard.h>
17
+ #include < util/optional.h>
18
+
18
19
#include < vector>
19
20
20
21
#define PIPED_PROCESS_INFINITE_TIMEOUT \
You can’t perform that action at this time.
0 commit comments