Skip to content

Commit 9ddeac7

Browse files
committed
Silence cpplint readability/braces on Windows-guarded class
cpplint's brace check gets confused by the #if/#else/#endif inside pipe_resource::render_GET, matching the existing NOLINT in examples/pipe_response_example.cpp.
1 parent 0aa9359 commit 9ddeac7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/integ/new_response_types.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class pipe_resource : public http_resource {
8383
close(pipefd[1]);
8484
return std::make_shared<pipe_response>(pipefd[0], 200);
8585
}
86-
};
86+
}; // NOLINT(readability/braces)
8787

8888
class iovec_resource : public http_resource {
8989
public:

0 commit comments

Comments
 (0)