Skip to content

Commit 86ac4a0

Browse files
committed
[MLIR] Apply clang-tidy fixes for modernize-use-bool-literals in Transport.cpp (NFC)
1 parent 6c8ad83 commit 86ac4a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/unittests/Tools/lsp-server-support/Transport.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ TEST_F(TransportInputTest, OutgoingRequest) {
174174

175175
TEST_F(TransportInputTest, OutgoingRequestJSONParseFailure) {
176176
// Make an outgoing request that expects a failure response.
177-
bool responseCallbackInvoked = 0;
177+
bool responseCallbackInvoked = false;
178178
auto callFn = getMessageHandler().outgoingRequest<CompletionList, Position>(
179179
"outgoing-request-json-parse-failure",
180180
[&responseCallbackInvoked](llvm::json::Value id,

0 commit comments

Comments
 (0)