We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0ffb8d commit 1ebad86Copy full SHA for 1ebad86
src/util/piped_process.h
@@ -8,18 +8,18 @@
8
#ifdef _WIN32
9
# include <memory>
10
// The below are forward declarations for Windows APIs
11
-struct _PROCESS_INFORMATION; // NOLINT
12
-typedef struct _PROCESS_INFORMATION PROCESS_INFORMATION; // NOLINT
13
-typedef void *HANDLE; // NOLINT
+struct _PROCESS_INFORMATION; // NOLINT
+typedef struct _PROCESS_INFORMATION PROCESS_INFORMATION; // NOLINT
+typedef void *HANDLE; // NOLINT
14
#endif
15
16
-# include <vector>
17
-# include "optional.h"
+#include "optional.h"
+#include <vector>
18
19
-# define PIPED_PROCESS_INFINITE_TIMEOUT \
20
- optionalt<std::size_t> \
21
- { \
22
- }
+#define PIPED_PROCESS_INFINITE_TIMEOUT \
+ optionalt<std::size_t> \
+ { \
+ }
23
24
class piped_processt
25
{
0 commit comments