Skip to content

Commit cd29b67

Browse files
committed
Supply fuller path for includes of /src/util headers
To make it more obvious which headers are being referred to.
1 parent f343922 commit cd29b67

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

src/util/piped_process.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -88,16 +88,16 @@
8888
# include <unistd.h> // library for read/write/sleep/etc. functions
8989
#endif
9090

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>
9497

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>
101101

102102
#ifdef _WIN32
103103
# define BUFSIZE (1024 * 64)

src/util/piped_process.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ typedef struct _PROCESS_INFORMATION PROCESS_INFORMATION; // NOLINT
1313
typedef void *HANDLE; // NOLINT
1414
#endif
1515

16-
#include "nodiscard.h"
17-
#include "optional.h"
16+
#include <util/nodiscard.h>
17+
#include <util/optional.h>
18+
1819
#include <vector>
1920

2021
#define PIPED_PROCESS_INFINITE_TIMEOUT \

0 commit comments

Comments
 (0)