Skip to content

Commit 1ebad86

Browse files
committed
Lint vs clang-format wars, round 2
1 parent c0ffb8d commit 1ebad86

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/util/piped_process.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@
88
#ifdef _WIN32
99
# include <memory>
1010
// 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
11+
struct _PROCESS_INFORMATION; // NOLINT
12+
typedef struct _PROCESS_INFORMATION PROCESS_INFORMATION; // NOLINT
13+
typedef void *HANDLE; // NOLINT
1414
#endif
1515

16-
# include <vector>
17-
# include "optional.h"
16+
#include "optional.h"
17+
#include <vector>
1818

19-
# define PIPED_PROCESS_INFINITE_TIMEOUT \
20-
optionalt<std::size_t> \
21-
{ \
22-
}
19+
#define PIPED_PROCESS_INFINITE_TIMEOUT \
20+
optionalt<std::size_t> \
21+
{ \
22+
}
2323

2424
class piped_processt
2525
{

0 commit comments

Comments
 (0)