Skip to content

Commit 2d1a0df

Browse files
committed
lldb-vscode: Add a forgotten cast to void
"git push" works even with a dirty working tree. :/
1 parent 2dbcfad commit 2d1a0df

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lldb/tools/lldb-vscode/VSCode.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ VSCode::VSCode()
4747
int result = _setmode(fileno(stdout), _O_BINARY);
4848
assert(result);
4949
result = _setmode(fileno(stdin), _O_BINARY);
50+
(void)result;
5051
assert(result);
5152
#endif
5253
if (log_file_path)

0 commit comments

Comments
 (0)